|
17373
|
771
|
31
|
2026-05-11T10:19:39.988393+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778494779988_m2.jpg...
|
PhpStorm
|
faVsco.js – Client.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
67
3
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Crm\Hubspot;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations as ContactsWithAssociations;
use HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations as CompaniesWithAssociations;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Objects\Model\SimplePublicObjectInput;
use HubSpot\Client\Crm\Objects\Model\SimplePublicObjectWithAssociations as ObjectWithAssociations;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery\Discovery;
use Jiminny\Exceptions\CrmException;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Exceptions\SocialAccountTokenInvalidException;
use Jiminny\Jobs\Crm\NoteObject;
use Jiminny\Models\Crm\Field;
use Jiminny\Services\Crm\BaseClient;
use Jiminny\Services\Crm\Hubspot\DTO\Response\Owner;
use Jiminny\Services\SocialAccountService;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Exceptions\HubspotException;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Response;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Illuminate\Support\Facades\Redis;
use Throwable;
/**
* @phpstan-type CrmFieldOption array{id:string, label:string, value?:string}
*/
class Client extends BaseClient implements HubspotClientInterface
{
public const string MIN_API_VERSION = '2';
public const string BASE_URL = '[URL_WITH_CREDENTIALS] T
* @param callable(): T $apiCall
* @return T
*
* @throws RateLimitException
*/
private function executeRequest(callable $apiCall)
{
$cacheKey = $this->getRateLimitCacheKey();
$cachedRetryAfter = Redis::get($cacheKey);
if (is_string($cachedRetryAfter) && is_numeric($cachedRetryAfter)) {
throw new RateLimitException(
'Hubspot rate limit (cached circuit-breaker)',
(int) $cachedRetryAfter,
);
}
try {
return $apiCall();
} catch (Throwable $e) {
if ($this->isHubspotRateLimit($e)) {
$retryAfter = $this->parseRetryAfter($e);
Redis::setex($cacheKey, $retryAfter, (string) $retryAfter);
$this->log->warning('[Hubspot] Received 429 from API', [
'team_id' => $this->config->team_id,
'config_id' => $this->config->getId(),
'retry_after' => $retryAfter,
'policy' => $this->parsePolicy($e),
'reason' => $e->getMessage(),
]);
throw new RateLimitException('Hubspot returned 429', $retryAfter, $e);
}
throw $e;
}
}
private function getRateLimitCacheKey(): string
{
return sprintf('hubspot:ratelimit:portal:%d', $this->config->getId());
}
public function isHubspotRateLimit(Throwable $e): bool
{
if ($e instanceof BadRequest
|| $e instanceof DealApiException
|| $e instanceof ContactApiException
|| $e instanceof CompanyApiException
|| $e instanceof \GuzzleHttp\Exception\RequestException
) {
return (int) $e->getCode() === 429;
}
return false;
}
public function parseRetryAfter(Throwable $e): int
{
if (method_exists($e, 'getResponseHeaders')) {
$headers = $e->getResponseHeaders() ?: [];
$value = $headers['Retry-After'] ?? $headers['retry-after'] ?? null;
if (is_array($value)) {
$value = $value[0] ?? null;
}
if (is_numeric($value)) {
return (int) $value;
}
}
$policy = $this->parsePolicy($e);
if ($policy === 'TEN_SECONDLY_ROLLING') {
return 10;
}
if ($policy === 'SECONDLY') {
return 1;
}
if ($policy === 'DAILY_LIMIT') {
return 600;
}
$this->log->warning('[Hubspot] No retry-after header or policy name found, using default', [
'exception_class' => get_class($e),
]);
return 10;
}
public function parsePolicy(Throwable $e): ?string
{
if (! method_exists($e, 'getResponseBody')) {
return null;
}
$body = $e->getResponseBody();
if (is_string($body)) {
$body = json_decode($body, true) ?? [];
}
if (! is_array($body)) {
return null;
}
$policy = $body['policyName'] ?? $body['policy'] ?? $body['context']['policyName'] ?? null;
return is_string($policy) ? strtoupper($policy) : null;
}
public function getMinimumApiVersion(): string
{
return self::MIN_API_VERSION;
}
public function getInstance(): Factory
{
return new Factory([
'key' => $this->accessToken,
'oauth2' => true,
'base_url' => $this->baseUrl,
]);
}
public function getNewInstance(): Discovery
{
return \HubSpot\Factory::createWithAccessToken($this->accessToken);
}
/**
* Secondly and daily limits for Hubspot API
*
* Product Tier: Free & Starter | Professional & Enterprise | API add-on (any tier)
* Burst: 100/10 seconds | 150/10 seconds | 200/10 seconds
* Daily: 250,000 | 500,000 | 1,000,000
*
* Official documentation states: The search endpoints are rate limited to five requests per second.
* Since with 5 RPS were still hitting secondly rate limits we lowered it to 4
*/
public function getPaginatedData(array $payload, string $type, int $offset = 0): array
{
$total = 0;
$lastId = null;
$rows = [];
foreach ($this->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastId) as $row) {
$rows[] = $row;
}
return ['results' => $rows, 'total' => $total, 'last_record' => $lastId];
}
/**
* @throws HubspotException
* @throws SocialAccountTokenInvalidException
* @throws BadRequest
*/
public function getPaginatedDataGenerator(
array $payload,
string $type,
int $offset = 0,
int &$total = 0,
?string &$lastRecordId = null
): \Generator {
return $this->paginationService->getPaginatedDataGenerator(
$this,
$payload,
$type,
$offset,
$total,
$lastRecordId
);
}
/**
* Execute a search request against HubSpot CRM objects with rate limiting.
*
* @param string $objectType The object type ('deals', 'companies', 'contacts', 'calls')
* @param array<string, mixed> $payload The search payload with filters, sorts, properties, etc.
* @return array The search response with 'results', 'total', 'paging' keys
* @throws RateLimitException When rate limit is hit
* @throws HubspotException On API errors
*/
public function search(string $objectType, array $payload): array
{
$endpoint = self::BASE_URL . "/crm/v3/objects/{$objectType}/search";
return $this->executeRequest(function () use ($endpoint, $payload) {
$response = $this->getInstance()->getClient()->request('POST', $endpoint, ['json' => $payload]);
return $response->toArray();
});
}
/**
* @throws DealApiException
* @throws CrmException
*/
public function getOpportunityById(string $crmId, array $fields): array
{
try {
// $deal = $this->executeRequest(fn () => $this->getNewInstance()->crm()->deals()->basicApi()->getById(
$deal = $this->getNewInstance()->crm()->deals()->basicApi()->getById(
$crmId,
implode(',', $fields),
'companies,contacts'
);
} catch (DealApiException $e) {
$this->log->info('[Hubspot] Failed to fetch opportunity', [
'crm_id' => $crmId,
'reason' => $e->getMessage(),
]);
throw $e;
}
if (! $deal instanceof DealWithAssociations) {
throw new CrmException('Deal not found');
}
return [
'id' => $deal->getId(),
'properties' => $deal->getProperties(),
'associations' => $deal->getAssociations(),
];
}
/**
* Generic batch read method for HubSpot objects
*
* @param string $objectType The object type ('deals', 'companies', 'contacts')
* @param array<string> $crmIds Array of HubSpot object IDs (max 100)
* @param array<string> $fields Array of property names to fetch
*
* @return array<string, array> Array keyed by CRM ID with object data
*/
private function batchReadObjects(string $objectType, array $crmIds, array $fields): array
{
if (empty($crmIds)) {
return [];
}
$this->validateBatchSize($objectType, $crmIds);
$this->ensureValidToken();
try {
$batchConfig = $this->createBatchConfiguration($objectType);
$batchReadRequest = $this->prepareBatchRequest($batchConfig, $crmIds, $fields);
$response = $batchConfig['api']->read($batchReadRequest);
$this->validateApiResponse($response, $objectType);
$results = $this->processApiResults($response);
$this->logBatchResults($objectType, $crmIds, $results);
return $results;
} catch (\Throwable $e) {
$this->handleBatchError($e, $objectType, $crmIds);
}
}
private function validateBatchSize(string $objectType, array $crmIds): void
{
if (count($crmIds) > 100) {
throw new \InvalidArgumentException("Batch size cannot exceed 100 {$objectType}");
}
}
private function createBatchConfiguration(string $objectType): array
{
$configurations = [
'deals' => [
'batchReadRequest' => new \HubSpot\Client\Crm\Deals\Model\BatchReadInputSimplePublicObjectId(),
'inputClass' => \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectId::class,
'api' => $this->getNewInstance()->crm()->deals()->batchApi(),
],
'companies' => [
'batchReadRequest' => new \HubSpot\Client\Crm\Companies\Model\BatchReadInputSimplePublicObjectId(),
'inputClass' => \HubSpot\Client\Crm\Companies\Model\SimplePublicObjectId::class,
'api' => $this->getNewInstance()->crm()->companies()->batchApi(),
],
'contacts' => [
'batchReadRequest' => new \HubSpot\Client\Crm\Contacts\Model\BatchReadInputSimplePublicObjectId(),
'inputClass' => \HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectId::class,
'api' => $this->getNewInstance()->crm()->contacts()->batchApi(),
],
];
if (! isset($configurations[$objectType])) {
throw new \InvalidArgumentException("Unsupported object type: {$objectType}");
}
return $configurations[$objectType];
}
private function prepareBatchRequest(array $batchConfig, array $crmIds, array $fields): object
{
$batchReadRequest = $batchConfig['batchReadRequest'];
$inputClass = $batchConfig['inputClass'];
$inputs = array_map(function ($crmId) use ($inputClass) {
$input = new $inputClass();
$input->setId($crmId);
return $input;
}, $crmIds);
$batchReadRequest->setInputs($inputs);
$batchReadRequest->setProperties($fields);
return $batchReadRequest;
}
private function validateApiResponse($response, string $objectType): void
{
if (! $response) {
throw new CrmException("HubSpot API returned null response for {$objectType} batch read");
}
}
private function processApiResults($response): array
{
$results = [];
$responseResults = $response->getResults();
if ($responseResults) {
foreach ($responseResults as $object) {
if ($object && $object->getId()) {
$results[$object->getId()] = [
'id' => $object->getId(),
'properties' => $object->getProperties() ?: [],
];
}
}
}
return $results;
}
private function logBatchResults(string $objectType, array $crmIds, array $results): void
{
$this->log->info("[HubSpot] Batch fetched {$objectType}", [
'requested_count' => count($crmIds),
'returned_count' => count($results),
'crm_ids' => $crmIds,
]);
}
private function handleBatchError(\Throwable $e, string $objectType, array $crmIds): void
{
$errorMessage = $e->getMessage() ?: 'Unknown error';
$errorTrace = $e->getTraceAsString() ?: 'No trace available';
$this->log->error("[HubSpot] Failed to batch fetch {$objectType}", [
'crm_ids' => $crmIds,
'error' => $errorMessage,
'trace' => $errorTrace,
]);
throw new CrmException("Failed to batch fetch {$objectType}: " . $errorMessage);
}
/**
* Batch read multiple opportunities by their CRM IDs
*
* @param array<string> $crmIds Array of HubSpot deal IDs (max 100)
* @param array<string> $fields Array of property names to fetch
*
* @return array<string, array> Array keyed by CRM ID with opportunity data
*/
public function getOpportunitiesByIds(array $crmIds, array $fields): array
{
return $this->batchReadObjects('deals', $crmIds, $fields);
}
/**
* Batch read multiple companies by their CRM IDs
*
* @param array<string> $crmIds Array of HubSpot company IDs (max 100)
* @param array<string> $fields Array of property names to fetch
*
* @return array<string, array> Array keyed by CRM ID with company data
*/
public function getCompaniesByIds(array $crmIds, array $fields): array
{
return $this->batchReadObjects('companies', $crmIds, $fields);
}
/**
* Batch read multiple contacts by their CRM IDs
*
* @param array<string> $crmIds Array of HubSpot contact IDs (max 100)
* @param array<string> $fields Array of property names to fetch
*
* @return array<string, array> Array keyed by CRM ID with contact data
*/
public function getContactsByIds(array $crmIds, array $fields): array
{
return $this->batchReadObjects('contacts', $crmIds, $fields);
}
/**
* @throws CompanyApiException
* @throws CrmException
*/
public function getAccountById(string $crmId, array $fields): array
{
try {
$company = $this->getNewInstance()->crm()->companies()->basicApi()->getById(
$crmId,
implode(',', $fields),
);
} catch (CompanyApiException $e) {
$this->log->info('[Hubspot] Failed to fetch account', [
'crm_id' => $crmId,
'reason' => $e->getMessage(),
]);
throw $e;
}
if (! $company instanceof CompaniesWithAssociations) {
throw new CrmException('Account not found');
}
return [
'id' => $company->getId(),
'properties' => $company->getProperties(),
];
}
/**
* @throws ContactApiException
* @throws CrmException
*/
public function getContactById(string $crmId, array $fields): array
{
try {
$contact = $this->getNewInstance()->crm()->contacts()->basicApi()->getById(
$crmId,
implode(',', $fields)
);
} catch (ContactApiException $e) {
$this->log->info('[Hubspot] Failed to fetch contact', [
'crm_id' => $crmId,
'reason' => $e->getMessage(),
]);
throw $e;
}
if (! $contact instanceof ContactsWithAssociations) {
throw new CrmException('Contact not found');
}
return [
'id' => $contact->getId(),
'properties' => $contact->getProperties(),
];
}
/**
* This is email search request that Hubspot offers as GET (more generous quota)
*/
public function getContactByEmail(string $email, array $fields = []): array
{
try {
$contact = $this->getNewInstance()->crm()->contacts()->basicApi()->getById(
$email,
implode(',', $fields),
null,
false,
'email'
);
return [
'id' => $contact->getId(),
'properties' => $contact->getProperties(),
];
} catch (ContactApiException $e) {
$this->log->info('[Hubspot] Failed to fetch contact', [
'email' => $email,
'reason' => $e->getMessage(),
]);
return [];
}
}
/**
* @throws CrmException
*/
public function fetchProperty(string $objectType, string $propertyId): Property
{
$result = $this->getNewInstance()->crm()->properties()->coreApi()->getByName($objectType, $propertyId);
if (! $result instanceof Property) {
$this->log->error('[Hubspot] Failed to fetch property', [
'object_type' => $objectType,
'property_id' => $propertyId,
'reason' => $result->getMessage(),
]);
throw new CrmException('Failed to fetch property');
}
return $result;
}
/**
* @return array<CrmFieldOption>
*/
public function fetchPropertyOptions(string $objectType, string $propertyId): array
{
/** @var array<CrmFieldOption> */
return $this->fetchProperty($objectType, $propertyId)->getOptions();
}
/**
* @return array<array{id:string, label:string, deleted:bool}>
*/
public function fetchCallDispositions(): array
{
/** @var Response $response */
$response = $this->getInstance()->engagements()->getCallDispositions();
/**
* @var array<array{
* id:string,
* label:string,
* deleted: bool
* }>
*/
return $response->toArray();
}
/**
* @return array<CrmFieldOption>
*/
public function fetchOpportunityPipelineStages(): array
{
$stages = [];
$apiResponse = $this->getNewInstance()->crm()->pipelines()->pipelinesApi()->getAll('deals');
if ($apiResponse instanceof Error) {
$this->log->error('[Hubspot] Failed to fetch opportunity pipelines', [
'reason' => $apiResponse->getMessage(),
]);
return [];
}
foreach ($apiResponse->getResults() as $pipeline) {
$pipelineStages = array_map(
static function (PipelineStage $stage) {
return [
'id' => $stage->getId(),
'label' => $stage->getLabel(),
];
},
$pipeline->getStages()
);
$stages = array_merge($stages, $pipelineStages);
}
return $stages;
}
public function fetchOpportunityPipelines(): array
{
$pipelines = [];
try {
$apiResponse = $this->makeRequest('/crm/v3/pipelines/deals');
} catch (\Exception $e) {
$this->log->info('[Hubspot] Failed to fetch opportunity pipelines', [
'reason' => $e->getMessage(),
]);
return [];
}
$response = $apiResponse->toArray();
foreach ($response['results'] as $pipeline) {
$pipelines[] = [
'id' => $pipeline['id'],
'label' => $pipeline['label'],
];
}
return $pipelines;
}
/**
* @return array<CrmFieldOption>
*/
public function fetchMeetingOutcomeFieldOptions(Field $field): array
{
return $field->getCrmProviderId() === 'meetingOutcome'
? $this->fetchMeetingOutcomeTypes()
: $this->fetchCallActivityTypes();
}
public function fetchMeetingOutcomeTypes(): array
{
return $this->extractMeetingTypeOptions(
'[URL_WITH_CREDENTIALS] Response $response */
$response = $this->getInstance()
->getClient()
->request('GET', $endpoint);
/**
* @var array<array{
* value: string,
* label: string,
* displayOrder: int
* }> $optionData
*/
$optionData = $response->toArray()['options'] ?? [];
$options = [];
foreach ($optionData as $item) {
$options[] = [
'id' => $item['value'],
'value' => $item['value'],
'label' => $item['label'],
'display_order' => $item['displayOrder'],
];
}
return $options;
}
/**
* @return array<CrmFieldOption>
*/
public function fetchDispositionFieldOptions(): array
{
$options = [];
$dispositions = $this->fetchCallDispositions();
foreach ($dispositions as $disposition) {
if ($disposition['deleted'] !== false) {
continue;
}
$option['value'] = $disposition['id'];
$option['id'] = $disposition['id'];
$option['label'] = $disposition['label'];
$options[] = $option;
}
return $options;
}
/**
* @return array<CrmFieldOption>
*/
public function fetchOpportunityFieldOptions(Field $field): array
{
if ($field->isStageField()) {
return $this->fetchOpportunityPipelineStages();
}
if ($field->isPipelineField()) {
return $this->fetchOpportunityPipelines();
}
return $this->fetchPropertyOptions('deals', $field->getCrmProviderId());
}
/**
* @throws BadRequest
* @throws HubspotException
*/
public function makeRequest(string $endpoint, $method = 'GET', $payload = [], ?string $queryString = null)
{
$endpoint = self::BASE_URL . $endpoint;
if ($method === 'GET') {
return $this->getInstance()->getClient()?->request(
method: $method,
endpoint: $endpoint,
query_string: $queryString
);
} else {
return $this->getInstance()->getClient()->request($method, $endpoint, [
'json' => ($payload),
]);
}
}
/**
* @throws BadRequest
* @throws HubspotException
*/
public function createMeeting(array $payload): Response
{
$endpoint = '/crm/v3/objects/meetings';
return $this->makeRequest($endpoint, 'POST', $payload);
}
/**
* @throws BadRequest
* @throws HubspotException
*/
public function updateMeeting(string $meetingId, array $payload): Response
{
$endpoint = '/crm/v3/objects/meetings/' . $meetingId;
return $this->makeRequest($endpoint, 'PATCH', $payload);
}
/**
* @throws \Exception
*/
public function createNote(
string $body,
string $ownerId,
int $timestamp,
string $objectId,
NoteObject $noteObject
): ?string {
try {
$noteInput = new SimplePublicObjectInput([
'properties' => [
'hs_note_body' => $body,
'hubspot_owner_id' => $ownerId,
'hs_timestamp' => $timestamp,
],
]);
// Create note
$note = $this->getNewInstance()->crm()->objects()->basicApi()->create('note', $noteInput);
$this->getNewInstance()->crm()->objects()->associationsApi()->create(
'note',
$note->getId(),
$this->getNoteObject($noteObject),
$objectId,
$this->getNoteAssociationType($noteObject),
);
return $note->getId();
} catch (\Exception $e) {
$this->log->error('[Hubspot] Failed to create note', [
'objectId' => $objectId,
'noteObject' => $noteObject->getObjectType(),
'reason' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return null;
}
public function updateEngagement(string $objectId, array $engagement, array $metadata): void
{
$this->getInstance()->engagements()->update($objectId, $engagement, $metadata);
}
public function getEngagementData(string $engagementId): array
{
$engagement = $this->getInstance()->engagements()->get($engagementId);
return $engagement->toArray();
}
public function createEngagement(array $engagement, array $associations, array $metadata): Response
{
return $this->getInstance()
->engagements()
->create($engagement, $associations, $metadata);
}
public function isUnauthorizedException(\Exception $e): bool
{
// Check for specific HubSpot API exception types first
if ($e instanceof BadRequest) {
// BadRequest can contain 401 status codes
return $e->getCode() === 401;
}
// Check for HTTP client exceptions with status codes
if ($e instanceof \GuzzleHttp\Exception\RequestException && $e->hasResponse()) {
$response = $e->getResponse();
if ($response !== null) {
return $response->getStatusCode() === 401;
}
}
// Check for Guzzle HTTP exceptions
if ($e instanceof \GuzzleHttp\Exception\ClientException) {
return $e->getCode() === 401;
}
// Fallback to string matching as last resort, but be more specific
$message = strtolower($e->getMessage());
return str_contains($message, '401 unauthorized') ||
str_contains($message, 'http 401') ||
str_contains($message, 'status code 401') ||
(preg_match('/\b401\b/', $message) && str_contains($message, 'unauthorized'));
}
/**
* Validates and refreshes the access token if needed before API requests.
* This ensures long-running processes don't fail due to token expiration.
*
* @throws SocialAccountTokenInvalidException
*/
public function ensureValidToken(): void
{
if ($this->oauthAccount === null) {
return;
}
$newToken = $this->tokenManager->ensureValidToken($this->oauthAccount);
if ($newToken !== null) {
$this->accessToken = $newToken;
}
}
public function getConfig()
{
return $this->config;
}
// returns only active (archived=false)
public function getOwners(): array
{
return $this->getNewInstance()->crm()->owners()->getAll();
}
/**
* @param bool $archived
*
* @return array<Owner>|[]
*/
public function getOwnersArchived(bool $archived = true): array
{
$endpoint = '/crm/v3/owners';
$queryParams = [
'archived' => $archived ? 'true' : 'false',
];
$queryString = http_build_query($queryParams);
$owners = [];
try {
$response = $this->makeRequest(endpoint: $endpoint, queryString: $queryString);
$responseData = $response?->toArray();
foreach ($responseData['results'] as $result) {
try {
$owners[] = Owner::create($result);
} catch (Throwable $e) {
$this->log->error('[HubSpot] Failed to process owner data', [
'result' => $result,
'error' => $e->getMessage(),
]);
continue;
}
}
} catch (Throwable $e) {
$this->log->error('HubSpot] Failed to fetch owners', [
'archived' => $archived,
'error' => $e->getMessage(),
]);
return [];
}
return $owners;
}
public function getMeeting(string $engagementId): ObjectWithAssociations
{
return $this->getNewInstance()->crm()->objects()->basicApi()
->getById('meeting', $engagementId, null, 'contact,company,deal');
}
public function deleteEngagement(string $engagementId): void
{
$this->getInstance()->engagements()->delete((int) $engagementId);
}
public function getAssociationsData(array $ids, string $fromObject, string $toObject): array
{
$associationData = [];
$idChunks = array_chunk($ids, self::ASSOCIATIONS_BATCH_SIZE_LIMIT);
foreach ($idChunks as $idChunk) {
try {
$batchInput = new \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId();
$batchInput->setInputs(array_map(function ($id) {
$publicObjectId = new \HubSpot\Client\Crm\Associations\Model\PublicObjectId();
$publicObjectId->setId($id);
return $publicObjectId;
}, $idChunk));
$associatedObjectsData = $this
->getNewInstance()
->crm()
->associations()
->batchApi()
->read($fromObject, $toObject, $batchInput);
if ($associatedObjectsData instanceof \HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti) {
foreach ($associatedObjectsData->getResults() as $association) {
$from = $association->getFrom()->getId();
$toAssociations = $association->getTo();
if (! empty($toAssociations)) {
$associationData[$from] = array_map(function ($item) {
return $item->getId();
}, $toAssociations);
}
}
}
// } catch (RateLimitException $e) {
// throw $e;
} catch (\Exception $e) {
$this->log->error('[Hubspot] Failed to fetch associations', [
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => $e->getMessage(),
]);
}
}
return $associationData;
}
/**
* @throws \Exception
*/
private function getNoteAssociationType(NoteObject $noteObject): string
{
return match($noteObject) {
NoteObject::Opportunity => 'note_to_deal',
NoteObject::Lead, NoteObject::Contact => 'note_to_contact', // or 'note_to_lead' if your portal supports it
NoteObject::Account => 'note_to_company',
NoteObject::Call, NoteObject::Event => throw new \Exception('Not supported'),
};
}
/**
* @throws \Exception
*/
private function getNoteObject(NoteObject $noteObject): string
{
return match($noteObject) {
NoteObject::Opportunity => 'deal',
NoteObject::Lead, NoteObject::Contact => 'contact',
NoteObject::Account => 'company',
NoteObject::Call, NoteObject::Event => throw new \Exception('Not supported'),
};
}
public function addAssociations(string $objectType, string $associationType, array $payload): Response
{
$endpoint = "/crm/v4/associations/$objectType/$associationType/batch/create";
return $this->makeRequest($endpoint, 'POST', $payload);
}
public function removeAssociations(string $objectType, string $associationType, array $payload): Response
{
$endpoint = "/crm/v4/associations/$objectType/$associationType/batch/archive";
return $this->makeRequest($endpoint, 'POST', $payload);
}
}
Show Replace Field
Search History
Received 429 from API
New Line
Match Case...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.82413566,"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":"HandleHubspotRateLimitTest","depth":6,"bounds":{"left":0.8394282,"top":0.019952115,"width":0.076130316,"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 'HandleHubspotRateLimitTest'","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 'HandleHubspotRateLimitTest'","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":"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":"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":"AXStaticText","text":"2","depth":4,"bounds":{"left":0.5518617,"top":0.17478053,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"67","depth":4,"bounds":{"left":0.5618351,"top":0.17478053,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"3","depth":4,"bounds":{"left":0.5738032,"top":0.17478053,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.5834442,"top":0.17318435,"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.59075797,"top":0.17318435,"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\\Crm\\Hubspot;\n\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations as ContactsWithAssociations;\nuse HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations as CompaniesWithAssociations;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Objects\\Model\\SimplePublicObjectInput;\nuse HubSpot\\Client\\Crm\\Objects\\Model\\SimplePublicObjectWithAssociations as ObjectWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery\\Discovery;\nuse Jiminny\\Exceptions\\CrmException;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Exceptions\\SocialAccountTokenInvalidException;\nuse Jiminny\\Jobs\\Crm\\NoteObject;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Services\\Crm\\BaseClient;\nuse Jiminny\\Services\\Crm\\Hubspot\\DTO\\Response\\Owner;\nuse Jiminny\\Services\\SocialAccountService;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Exceptions\\HubspotException;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Response;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Illuminate\\Support\\Facades\\Redis;\nuse Throwable;\n\n/**\n * @phpstan-type CrmFieldOption array{id:string, label:string, value?:string}\n */\nclass Client extends BaseClient implements HubspotClientInterface\n{\n public const string MIN_API_VERSION = '2';\n\n public const string BASE_URL = 'https://api.hubapi.com';\n\n public const int ASSOCIATIONS_BATCH_SIZE_LIMIT = 1000;\n\n private HubspotPaginationService $paginationService;\n private HubspotTokenManager $tokenManager;\n\n public function __construct(\n SocialAccountService $socialAccountService,\n HubspotPaginationService $paginationService,\n HubspotTokenManager $tokenManager\n ) {\n parent::__construct($socialAccountService);\n $this->paginationService = $paginationService;\n $this->tokenManager = $tokenManager;\n\n $this->setBaseUrl(self::BASE_URL);\n $this->setVersion(self::MIN_API_VERSION);\n }\n\n /**\n * Reacts to a rate limits (429) from HubSpot by translating it\n * into a RateLimitException carrying retry_after.\n *\n * Wrap any outbound HubSpot call (SDK or raw HTTP) like:\n *\n * $this->executeRequest(fn () => $this->getNewInstance()->crm()->...);\n *\n * @template T\n * @param callable(): T $apiCall\n * @return T\n *\n * @throws RateLimitException\n */\n private function executeRequest(callable $apiCall)\n {\n $cacheKey = $this->getRateLimitCacheKey();\n\n $cachedRetryAfter = Redis::get($cacheKey);\n if (is_string($cachedRetryAfter) && is_numeric($cachedRetryAfter)) {\n throw new RateLimitException(\n 'Hubspot rate limit (cached circuit-breaker)',\n (int) $cachedRetryAfter,\n );\n }\n\n try {\n return $apiCall();\n } catch (Throwable $e) {\n if ($this->isHubspotRateLimit($e)) {\n $retryAfter = $this->parseRetryAfter($e);\n\n Redis::setex($cacheKey, $retryAfter, (string) $retryAfter);\n\n $this->log->warning('[Hubspot] Received 429 from API', [\n 'team_id' => $this->config->team_id,\n 'config_id' => $this->config->getId(),\n 'retry_after' => $retryAfter,\n 'policy' => $this->parsePolicy($e),\n 'reason' => $e->getMessage(),\n ]);\n\n throw new RateLimitException('Hubspot returned 429', $retryAfter, $e);\n }\n\n throw $e;\n }\n }\n\n private function getRateLimitCacheKey(): string\n {\n return sprintf('hubspot:ratelimit:portal:%d', $this->config->getId());\n }\n\n public function isHubspotRateLimit(Throwable $e): bool\n {\n if ($e instanceof BadRequest\n || $e instanceof DealApiException\n || $e instanceof ContactApiException\n || $e instanceof CompanyApiException\n || $e instanceof \\GuzzleHttp\\Exception\\RequestException\n ) {\n return (int) $e->getCode() === 429;\n }\n\n return false;\n }\n\n public function parseRetryAfter(Throwable $e): int\n {\n if (method_exists($e, 'getResponseHeaders')) {\n $headers = $e->getResponseHeaders() ?: [];\n $value = $headers['Retry-After'] ?? $headers['retry-after'] ?? null;\n if (is_array($value)) {\n $value = $value[0] ?? null;\n }\n if (is_numeric($value)) {\n return (int) $value;\n }\n }\n\n $policy = $this->parsePolicy($e);\n if ($policy === 'TEN_SECONDLY_ROLLING') {\n return 10;\n }\n if ($policy === 'SECONDLY') {\n return 1;\n }\n if ($policy === 'DAILY_LIMIT') {\n return 600;\n }\n\n $this->log->warning('[Hubspot] No retry-after header or policy name found, using default', [\n 'exception_class' => get_class($e),\n ]);\n\n return 10;\n }\n\n public function parsePolicy(Throwable $e): ?string\n {\n if (! method_exists($e, 'getResponseBody')) {\n return null;\n }\n\n $body = $e->getResponseBody();\n if (is_string($body)) {\n $body = json_decode($body, true) ?? [];\n }\n\n if (! is_array($body)) {\n return null;\n }\n\n $policy = $body['policyName'] ?? $body['policy'] ?? $body['context']['policyName'] ?? null;\n\n return is_string($policy) ? strtoupper($policy) : null;\n }\n\n public function getMinimumApiVersion(): string\n {\n return self::MIN_API_VERSION;\n }\n\n public function getInstance(): Factory\n {\n return new Factory([\n 'key' => $this->accessToken,\n 'oauth2' => true,\n 'base_url' => $this->baseUrl,\n ]);\n }\n\n public function getNewInstance(): Discovery\n {\n return \\HubSpot\\Factory::createWithAccessToken($this->accessToken);\n }\n\n /**\n * Secondly and daily limits for Hubspot API\n *\n * Product Tier: Free & Starter | Professional & Enterprise | API add-on (any tier)\n * Burst: 100/10 seconds | 150/10 seconds | 200/10 seconds\n * Daily: 250,000 | 500,000 | 1,000,000\n *\n * Official documentation states: The search endpoints are rate limited to five requests per second.\n * Since with 5 RPS were still hitting secondly rate limits we lowered it to 4\n */\n public function getPaginatedData(array $payload, string $type, int $offset = 0): array\n {\n $total = 0;\n $lastId = null;\n $rows = [];\n foreach ($this->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastId) as $row) {\n $rows[] = $row;\n }\n\n return ['results' => $rows, 'total' => $total, 'last_record' => $lastId];\n }\n\n /**\n * @throws HubspotException\n * @throws SocialAccountTokenInvalidException\n * @throws BadRequest\n */\n public function getPaginatedDataGenerator(\n array $payload,\n string $type,\n int $offset = 0,\n int &$total = 0,\n ?string &$lastRecordId = null\n ): \\Generator {\n return $this->paginationService->getPaginatedDataGenerator(\n $this,\n $payload,\n $type,\n $offset,\n $total,\n $lastRecordId\n );\n }\n\n /**\n * Execute a search request against HubSpot CRM objects with rate limiting.\n *\n * @param string $objectType The object type ('deals', 'companies', 'contacts', 'calls')\n * @param array<string, mixed> $payload The search payload with filters, sorts, properties, etc.\n * @return array The search response with 'results', 'total', 'paging' keys\n * @throws RateLimitException When rate limit is hit\n * @throws HubspotException On API errors\n */\n public function search(string $objectType, array $payload): array\n {\n $endpoint = self::BASE_URL . \"/crm/v3/objects/{$objectType}/search\";\n\n return $this->executeRequest(function () use ($endpoint, $payload) {\n $response = $this->getInstance()->getClient()->request('POST', $endpoint, ['json' => $payload]);\n\n return $response->toArray();\n });\n }\n\n /**\n * @throws DealApiException\n * @throws CrmException\n */\n public function getOpportunityById(string $crmId, array $fields): array\n {\n try {\n// $deal = $this->executeRequest(fn () => $this->getNewInstance()->crm()->deals()->basicApi()->getById(\n $deal = $this->getNewInstance()->crm()->deals()->basicApi()->getById(\n $crmId,\n implode(',', $fields),\n 'companies,contacts'\n );\n } catch (DealApiException $e) {\n $this->log->info('[Hubspot] Failed to fetch opportunity', [\n 'crm_id' => $crmId,\n 'reason' => $e->getMessage(),\n ]);\n\n throw $e;\n }\n\n if (! $deal instanceof DealWithAssociations) {\n throw new CrmException('Deal not found');\n }\n\n return [\n 'id' => $deal->getId(),\n 'properties' => $deal->getProperties(),\n 'associations' => $deal->getAssociations(),\n ];\n }\n\n /**\n * Generic batch read method for HubSpot objects\n *\n * @param string $objectType The object type ('deals', 'companies', 'contacts')\n * @param array<string> $crmIds Array of HubSpot object IDs (max 100)\n * @param array<string> $fields Array of property names to fetch\n *\n * @return array<string, array> Array keyed by CRM ID with object data\n */\n private function batchReadObjects(string $objectType, array $crmIds, array $fields): array\n {\n if (empty($crmIds)) {\n return [];\n }\n\n $this->validateBatchSize($objectType, $crmIds);\n $this->ensureValidToken();\n\n try {\n $batchConfig = $this->createBatchConfiguration($objectType);\n $batchReadRequest = $this->prepareBatchRequest($batchConfig, $crmIds, $fields);\n $response = $batchConfig['api']->read($batchReadRequest);\n\n $this->validateApiResponse($response, $objectType);\n\n $results = $this->processApiResults($response);\n $this->logBatchResults($objectType, $crmIds, $results);\n\n return $results;\n } catch (\\Throwable $e) {\n $this->handleBatchError($e, $objectType, $crmIds);\n }\n }\n\n private function validateBatchSize(string $objectType, array $crmIds): void\n {\n if (count($crmIds) > 100) {\n throw new \\InvalidArgumentException(\"Batch size cannot exceed 100 {$objectType}\");\n }\n }\n\n private function createBatchConfiguration(string $objectType): array\n {\n $configurations = [\n 'deals' => [\n 'batchReadRequest' => new \\HubSpot\\Client\\Crm\\Deals\\Model\\BatchReadInputSimplePublicObjectId(),\n 'inputClass' => \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectId::class,\n 'api' => $this->getNewInstance()->crm()->deals()->batchApi(),\n ],\n 'companies' => [\n 'batchReadRequest' => new \\HubSpot\\Client\\Crm\\Companies\\Model\\BatchReadInputSimplePublicObjectId(),\n 'inputClass' => \\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectId::class,\n 'api' => $this->getNewInstance()->crm()->companies()->batchApi(),\n ],\n 'contacts' => [\n 'batchReadRequest' => new \\HubSpot\\Client\\Crm\\Contacts\\Model\\BatchReadInputSimplePublicObjectId(),\n 'inputClass' => \\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectId::class,\n 'api' => $this->getNewInstance()->crm()->contacts()->batchApi(),\n ],\n ];\n\n if (! isset($configurations[$objectType])) {\n throw new \\InvalidArgumentException(\"Unsupported object type: {$objectType}\");\n }\n\n return $configurations[$objectType];\n }\n\n private function prepareBatchRequest(array $batchConfig, array $crmIds, array $fields): object\n {\n $batchReadRequest = $batchConfig['batchReadRequest'];\n $inputClass = $batchConfig['inputClass'];\n\n $inputs = array_map(function ($crmId) use ($inputClass) {\n $input = new $inputClass();\n $input->setId($crmId);\n\n return $input;\n }, $crmIds);\n\n $batchReadRequest->setInputs($inputs);\n $batchReadRequest->setProperties($fields);\n\n return $batchReadRequest;\n }\n\n private function validateApiResponse($response, string $objectType): void\n {\n if (! $response) {\n throw new CrmException(\"HubSpot API returned null response for {$objectType} batch read\");\n }\n }\n\n private function processApiResults($response): array\n {\n $results = [];\n $responseResults = $response->getResults();\n\n if ($responseResults) {\n foreach ($responseResults as $object) {\n if ($object && $object->getId()) {\n $results[$object->getId()] = [\n 'id' => $object->getId(),\n 'properties' => $object->getProperties() ?: [],\n ];\n }\n }\n }\n\n return $results;\n }\n\n private function logBatchResults(string $objectType, array $crmIds, array $results): void\n {\n $this->log->info(\"[HubSpot] Batch fetched {$objectType}\", [\n 'requested_count' => count($crmIds),\n 'returned_count' => count($results),\n 'crm_ids' => $crmIds,\n ]);\n }\n\n private function handleBatchError(\\Throwable $e, string $objectType, array $crmIds): void\n {\n $errorMessage = $e->getMessage() ?: 'Unknown error';\n $errorTrace = $e->getTraceAsString() ?: 'No trace available';\n\n $this->log->error(\"[HubSpot] Failed to batch fetch {$objectType}\", [\n 'crm_ids' => $crmIds,\n 'error' => $errorMessage,\n 'trace' => $errorTrace,\n ]);\n\n throw new CrmException(\"Failed to batch fetch {$objectType}: \" . $errorMessage);\n }\n\n /**\n * Batch read multiple opportunities by their CRM IDs\n *\n * @param array<string> $crmIds Array of HubSpot deal IDs (max 100)\n * @param array<string> $fields Array of property names to fetch\n *\n * @return array<string, array> Array keyed by CRM ID with opportunity data\n */\n public function getOpportunitiesByIds(array $crmIds, array $fields): array\n {\n return $this->batchReadObjects('deals', $crmIds, $fields);\n }\n\n /**\n * Batch read multiple companies by their CRM IDs\n *\n * @param array<string> $crmIds Array of HubSpot company IDs (max 100)\n * @param array<string> $fields Array of property names to fetch\n *\n * @return array<string, array> Array keyed by CRM ID with company data\n */\n public function getCompaniesByIds(array $crmIds, array $fields): array\n {\n return $this->batchReadObjects('companies', $crmIds, $fields);\n }\n\n /**\n * Batch read multiple contacts by their CRM IDs\n *\n * @param array<string> $crmIds Array of HubSpot contact IDs (max 100)\n * @param array<string> $fields Array of property names to fetch\n *\n * @return array<string, array> Array keyed by CRM ID with contact data\n */\n public function getContactsByIds(array $crmIds, array $fields): array\n {\n return $this->batchReadObjects('contacts', $crmIds, $fields);\n }\n\n /**\n * @throws CompanyApiException\n * @throws CrmException\n */\n public function getAccountById(string $crmId, array $fields): array\n {\n try {\n $company = $this->getNewInstance()->crm()->companies()->basicApi()->getById(\n $crmId,\n implode(',', $fields),\n );\n } catch (CompanyApiException $e) {\n $this->log->info('[Hubspot] Failed to fetch account', [\n 'crm_id' => $crmId,\n 'reason' => $e->getMessage(),\n ]);\n\n throw $e;\n }\n\n if (! $company instanceof CompaniesWithAssociations) {\n throw new CrmException('Account not found');\n }\n\n return [\n 'id' => $company->getId(),\n 'properties' => $company->getProperties(),\n ];\n }\n\n /**\n * @throws ContactApiException\n * @throws CrmException\n */\n public function getContactById(string $crmId, array $fields): array\n {\n try {\n $contact = $this->getNewInstance()->crm()->contacts()->basicApi()->getById(\n $crmId,\n implode(',', $fields)\n );\n } catch (ContactApiException $e) {\n $this->log->info('[Hubspot] Failed to fetch contact', [\n 'crm_id' => $crmId,\n 'reason' => $e->getMessage(),\n ]);\n\n throw $e;\n }\n\n if (! $contact instanceof ContactsWithAssociations) {\n throw new CrmException('Contact not found');\n }\n\n return [\n 'id' => $contact->getId(),\n 'properties' => $contact->getProperties(),\n ];\n }\n\n /**\n * This is email search request that Hubspot offers as GET (more generous quota)\n */\n public function getContactByEmail(string $email, array $fields = []): array\n {\n try {\n $contact = $this->getNewInstance()->crm()->contacts()->basicApi()->getById(\n $email,\n implode(',', $fields),\n null,\n false,\n 'email'\n );\n\n return [\n 'id' => $contact->getId(),\n 'properties' => $contact->getProperties(),\n ];\n } catch (ContactApiException $e) {\n $this->log->info('[Hubspot] Failed to fetch contact', [\n 'email' => $email,\n 'reason' => $e->getMessage(),\n ]);\n\n return [];\n }\n }\n\n /**\n * @throws CrmException\n */\n public function fetchProperty(string $objectType, string $propertyId): Property\n {\n $result = $this->getNewInstance()->crm()->properties()->coreApi()->getByName($objectType, $propertyId);\n\n if (! $result instanceof Property) {\n $this->log->error('[Hubspot] Failed to fetch property', [\n 'object_type' => $objectType,\n 'property_id' => $propertyId,\n 'reason' => $result->getMessage(),\n ]);\n\n throw new CrmException('Failed to fetch property');\n }\n\n return $result;\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchPropertyOptions(string $objectType, string $propertyId): array\n {\n /** @var array<CrmFieldOption> */\n return $this->fetchProperty($objectType, $propertyId)->getOptions();\n }\n\n /**\n * @return array<array{id:string, label:string, deleted:bool}>\n */\n public function fetchCallDispositions(): array\n {\n /** @var Response $response */\n $response = $this->getInstance()->engagements()->getCallDispositions();\n\n /**\n * @var array<array{\n * id:string,\n * label:string,\n * deleted: bool\n * }>\n */\n return $response->toArray();\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchOpportunityPipelineStages(): array\n {\n $stages = [];\n $apiResponse = $this->getNewInstance()->crm()->pipelines()->pipelinesApi()->getAll('deals');\n\n if ($apiResponse instanceof Error) {\n $this->log->error('[Hubspot] Failed to fetch opportunity pipelines', [\n 'reason' => $apiResponse->getMessage(),\n ]);\n\n return [];\n }\n\n foreach ($apiResponse->getResults() as $pipeline) {\n $pipelineStages = array_map(\n static function (PipelineStage $stage) {\n return [\n 'id' => $stage->getId(),\n 'label' => $stage->getLabel(),\n ];\n },\n $pipeline->getStages()\n );\n\n $stages = array_merge($stages, $pipelineStages);\n }\n\n return $stages;\n }\n\n public function fetchOpportunityPipelines(): array\n {\n $pipelines = [];\n\n try {\n $apiResponse = $this->makeRequest('/crm/v3/pipelines/deals');\n } catch (\\Exception $e) {\n $this->log->info('[Hubspot] Failed to fetch opportunity pipelines', [\n 'reason' => $e->getMessage(),\n ]);\n\n return [];\n }\n\n $response = $apiResponse->toArray();\n\n foreach ($response['results'] as $pipeline) {\n $pipelines[] = [\n 'id' => $pipeline['id'],\n 'label' => $pipeline['label'],\n ];\n }\n\n return $pipelines;\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchMeetingOutcomeFieldOptions(Field $field): array\n {\n return $field->getCrmProviderId() === 'meetingOutcome'\n ? $this->fetchMeetingOutcomeTypes()\n : $this->fetchCallActivityTypes();\n }\n\n public function fetchMeetingOutcomeTypes(): array\n {\n return $this->extractMeetingTypeOptions(\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome'\n );\n }\n\n public function fetchCallActivityTypes(): array\n {\n return $this->extractMeetingTypeOptions(\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type'\n );\n }\n\n private function extractMeetingTypeOptions(string $endpoint): array\n {\n /** @var Response $response */\n $response = $this->getInstance()\n ->getClient()\n ->request('GET', $endpoint);\n\n /**\n * @var array<array{\n * value: string,\n * label: string,\n * displayOrder: int\n * }> $optionData\n */\n $optionData = $response->toArray()['options'] ?? [];\n\n $options = [];\n foreach ($optionData as $item) {\n $options[] = [\n 'id' => $item['value'],\n 'value' => $item['value'],\n 'label' => $item['label'],\n 'display_order' => $item['displayOrder'],\n ];\n }\n\n return $options;\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchDispositionFieldOptions(): array\n {\n $options = [];\n\n $dispositions = $this->fetchCallDispositions();\n\n foreach ($dispositions as $disposition) {\n if ($disposition['deleted'] !== false) {\n continue;\n }\n\n $option['value'] = $disposition['id'];\n $option['id'] = $disposition['id'];\n $option['label'] = $disposition['label'];\n\n $options[] = $option;\n }\n\n return $options;\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchOpportunityFieldOptions(Field $field): array\n {\n if ($field->isStageField()) {\n return $this->fetchOpportunityPipelineStages();\n }\n\n if ($field->isPipelineField()) {\n return $this->fetchOpportunityPipelines();\n }\n\n return $this->fetchPropertyOptions('deals', $field->getCrmProviderId());\n }\n\n /**\n * @throws BadRequest\n * @throws HubspotException\n */\n public function makeRequest(string $endpoint, $method = 'GET', $payload = [], ?string $queryString = null)\n {\n $endpoint = self::BASE_URL . $endpoint;\n\n if ($method === 'GET') {\n return $this->getInstance()->getClient()?->request(\n method: $method,\n endpoint: $endpoint,\n query_string: $queryString\n );\n } else {\n return $this->getInstance()->getClient()->request($method, $endpoint, [\n 'json' => ($payload),\n ]);\n }\n }\n\n /**\n * @throws BadRequest\n * @throws HubspotException\n */\n public function createMeeting(array $payload): Response\n {\n $endpoint = '/crm/v3/objects/meetings';\n\n return $this->makeRequest($endpoint, 'POST', $payload);\n }\n\n /**\n * @throws BadRequest\n * @throws HubspotException\n */\n public function updateMeeting(string $meetingId, array $payload): Response\n {\n $endpoint = '/crm/v3/objects/meetings/' . $meetingId;\n\n return $this->makeRequest($endpoint, 'PATCH', $payload);\n }\n\n /**\n * @throws \\Exception\n */\n public function createNote(\n string $body,\n string $ownerId,\n int $timestamp,\n string $objectId,\n NoteObject $noteObject\n ): ?string {\n try {\n $noteInput = new SimplePublicObjectInput([\n 'properties' => [\n 'hs_note_body' => $body,\n 'hubspot_owner_id' => $ownerId,\n 'hs_timestamp' => $timestamp,\n ],\n ]);\n\n // Create note\n $note = $this->getNewInstance()->crm()->objects()->basicApi()->create('note', $noteInput);\n\n $this->getNewInstance()->crm()->objects()->associationsApi()->create(\n 'note',\n $note->getId(),\n $this->getNoteObject($noteObject),\n $objectId,\n $this->getNoteAssociationType($noteObject),\n );\n\n return $note->getId();\n } catch (\\Exception $e) {\n $this->log->error('[Hubspot] Failed to create note', [\n 'objectId' => $objectId,\n 'noteObject' => $noteObject->getObjectType(),\n 'reason' => $e->getMessage(),\n ]);\n\n \\Sentry::captureException($e);\n }\n\n return null;\n }\n\n public function updateEngagement(string $objectId, array $engagement, array $metadata): void\n {\n $this->getInstance()->engagements()->update($objectId, $engagement, $metadata);\n }\n\n public function getEngagementData(string $engagementId): array\n {\n $engagement = $this->getInstance()->engagements()->get($engagementId);\n\n return $engagement->toArray();\n }\n\n public function createEngagement(array $engagement, array $associations, array $metadata): Response\n {\n return $this->getInstance()\n ->engagements()\n ->create($engagement, $associations, $metadata);\n }\n\n public function isUnauthorizedException(\\Exception $e): bool\n {\n // Check for specific HubSpot API exception types first\n if ($e instanceof BadRequest) {\n // BadRequest can contain 401 status codes\n return $e->getCode() === 401;\n }\n\n // Check for HTTP client exceptions with status codes\n if ($e instanceof \\GuzzleHttp\\Exception\\RequestException && $e->hasResponse()) {\n $response = $e->getResponse();\n if ($response !== null) {\n return $response->getStatusCode() === 401;\n }\n }\n\n // Check for Guzzle HTTP exceptions\n if ($e instanceof \\GuzzleHttp\\Exception\\ClientException) {\n return $e->getCode() === 401;\n }\n\n // Fallback to string matching as last resort, but be more specific\n $message = strtolower($e->getMessage());\n\n return str_contains($message, '401 unauthorized') ||\n str_contains($message, 'http 401') ||\n str_contains($message, 'status code 401') ||\n (preg_match('/\\b401\\b/', $message) && str_contains($message, 'unauthorized'));\n }\n\n /**\n * Validates and refreshes the access token if needed before API requests.\n * This ensures long-running processes don't fail due to token expiration.\n *\n * @throws SocialAccountTokenInvalidException\n */\n public function ensureValidToken(): void\n {\n if ($this->oauthAccount === null) {\n return;\n }\n\n $newToken = $this->tokenManager->ensureValidToken($this->oauthAccount);\n if ($newToken !== null) {\n $this->accessToken = $newToken;\n }\n }\n\n public function getConfig()\n {\n return $this->config;\n }\n\n // returns only active (archived=false)\n public function getOwners(): array\n {\n return $this->getNewInstance()->crm()->owners()->getAll();\n }\n\n /**\n * @param bool $archived\n *\n * @return array<Owner>|[]\n */\n public function getOwnersArchived(bool $archived = true): array\n {\n $endpoint = '/crm/v3/owners';\n $queryParams = [\n 'archived' => $archived ? 'true' : 'false',\n ];\n $queryString = http_build_query($queryParams);\n\n $owners = [];\n\n try {\n $response = $this->makeRequest(endpoint: $endpoint, queryString: $queryString);\n $responseData = $response?->toArray();\n\n foreach ($responseData['results'] as $result) {\n try {\n $owners[] = Owner::create($result);\n } catch (Throwable $e) {\n $this->log->error('[HubSpot] Failed to process owner data', [\n 'result' => $result,\n 'error' => $e->getMessage(),\n ]);\n\n continue;\n }\n }\n } catch (Throwable $e) {\n $this->log->error('HubSpot] Failed to fetch owners', [\n 'archived' => $archived,\n 'error' => $e->getMessage(),\n ]);\n\n return [];\n }\n\n return $owners;\n }\n\n public function getMeeting(string $engagementId): ObjectWithAssociations\n {\n return $this->getNewInstance()->crm()->objects()->basicApi()\n ->getById('meeting', $engagementId, null, 'contact,company,deal');\n }\n\n public function deleteEngagement(string $engagementId): void\n {\n $this->getInstance()->engagements()->delete((int) $engagementId);\n }\n\n public function getAssociationsData(array $ids, string $fromObject, string $toObject): array\n {\n $associationData = [];\n $idChunks = array_chunk($ids, self::ASSOCIATIONS_BATCH_SIZE_LIMIT);\n\n foreach ($idChunks as $idChunk) {\n try {\n $batchInput = new \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId();\n $batchInput->setInputs(array_map(function ($id) {\n $publicObjectId = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId();\n $publicObjectId->setId($id);\n\n return $publicObjectId;\n }, $idChunk));\n\n $associatedObjectsData = $this\n ->getNewInstance()\n ->crm()\n ->associations()\n ->batchApi()\n ->read($fromObject, $toObject, $batchInput);\n\n if ($associatedObjectsData instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti) {\n foreach ($associatedObjectsData->getResults() as $association) {\n $from = $association->getFrom()->getId();\n $toAssociations = $association->getTo();\n\n if (! empty($toAssociations)) {\n $associationData[$from] = array_map(function ($item) {\n return $item->getId();\n }, $toAssociations);\n }\n }\n }\n// } catch (RateLimitException $e) {\n// throw $e;\n } catch (\\Exception $e) {\n $this->log->error('[Hubspot] Failed to fetch associations', [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => $e->getMessage(),\n ]);\n }\n }\n\n return $associationData;\n }\n\n /**\n * @throws \\Exception\n */\n private function getNoteAssociationType(NoteObject $noteObject): string\n {\n return match($noteObject) {\n NoteObject::Opportunity => 'note_to_deal',\n NoteObject::Lead, NoteObject::Contact => 'note_to_contact', // or 'note_to_lead' if your portal supports it\n NoteObject::Account => 'note_to_company',\n NoteObject::Call, NoteObject::Event => throw new \\Exception('Not supported'),\n };\n }\n\n /**\n * @throws \\Exception\n */\n private function getNoteObject(NoteObject $noteObject): string\n {\n return match($noteObject) {\n NoteObject::Opportunity => 'deal',\n NoteObject::Lead, NoteObject::Contact => 'contact',\n NoteObject::Account => 'company',\n NoteObject::Call, NoteObject::Event => throw new \\Exception('Not supported'),\n };\n }\n\n public function addAssociations(string $objectType, string $associationType, array $payload): Response\n {\n $endpoint = \"/crm/v4/associations/$objectType/$associationType/batch/create\";\n\n return $this->makeRequest($endpoint, 'POST', $payload);\n }\n\n public function removeAssociations(string $objectType, string $associationType, array $payload): Response\n {\n $endpoint = \"/crm/v4/associations/$objectType/$associationType/batch/archive\";\n\n return $this->makeRequest($endpoint, 'POST', $payload);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Crm\\Hubspot;\n\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations as ContactsWithAssociations;\nuse HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations as CompaniesWithAssociations;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Objects\\Model\\SimplePublicObjectInput;\nuse HubSpot\\Client\\Crm\\Objects\\Model\\SimplePublicObjectWithAssociations as ObjectWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery\\Discovery;\nuse Jiminny\\Exceptions\\CrmException;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Exceptions\\SocialAccountTokenInvalidException;\nuse Jiminny\\Jobs\\Crm\\NoteObject;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Services\\Crm\\BaseClient;\nuse Jiminny\\Services\\Crm\\Hubspot\\DTO\\Response\\Owner;\nuse Jiminny\\Services\\SocialAccountService;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Exceptions\\HubspotException;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Response;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Illuminate\\Support\\Facades\\Redis;\nuse Throwable;\n\n/**\n * @phpstan-type CrmFieldOption array{id:string, label:string, value?:string}\n */\nclass Client extends BaseClient implements HubspotClientInterface\n{\n public const string MIN_API_VERSION = '2';\n\n public const string BASE_URL = 'https://api.hubapi.com';\n\n public const int ASSOCIATIONS_BATCH_SIZE_LIMIT = 1000;\n\n private HubspotPaginationService $paginationService;\n private HubspotTokenManager $tokenManager;\n\n public function __construct(\n SocialAccountService $socialAccountService,\n HubspotPaginationService $paginationService,\n HubspotTokenManager $tokenManager\n ) {\n parent::__construct($socialAccountService);\n $this->paginationService = $paginationService;\n $this->tokenManager = $tokenManager;\n\n $this->setBaseUrl(self::BASE_URL);\n $this->setVersion(self::MIN_API_VERSION);\n }\n\n /**\n * Reacts to a rate limits (429) from HubSpot by translating it\n * into a RateLimitException carrying retry_after.\n *\n * Wrap any outbound HubSpot call (SDK or raw HTTP) like:\n *\n * $this->executeRequest(fn () => $this->getNewInstance()->crm()->...);\n *\n * @template T\n * @param callable(): T $apiCall\n * @return T\n *\n * @throws RateLimitException\n */\n private function executeRequest(callable $apiCall)\n {\n $cacheKey = $this->getRateLimitCacheKey();\n\n $cachedRetryAfter = Redis::get($cacheKey);\n if (is_string($cachedRetryAfter) && is_numeric($cachedRetryAfter)) {\n throw new RateLimitException(\n 'Hubspot rate limit (cached circuit-breaker)',\n (int) $cachedRetryAfter,\n );\n }\n\n try {\n return $apiCall();\n } catch (Throwable $e) {\n if ($this->isHubspotRateLimit($e)) {\n $retryAfter = $this->parseRetryAfter($e);\n\n Redis::setex($cacheKey, $retryAfter, (string) $retryAfter);\n\n $this->log->warning('[Hubspot] Received 429 from API', [\n 'team_id' => $this->config->team_id,\n 'config_id' => $this->config->getId(),\n 'retry_after' => $retryAfter,\n 'policy' => $this->parsePolicy($e),\n 'reason' => $e->getMessage(),\n ]);\n\n throw new RateLimitException('Hubspot returned 429', $retryAfter, $e);\n }\n\n throw $e;\n }\n }\n\n private function getRateLimitCacheKey(): string\n {\n return sprintf('hubspot:ratelimit:portal:%d', $this->config->getId());\n }\n\n public function isHubspotRateLimit(Throwable $e): bool\n {\n if ($e instanceof BadRequest\n || $e instanceof DealApiException\n || $e instanceof ContactApiException\n || $e instanceof CompanyApiException\n || $e instanceof \\GuzzleHttp\\Exception\\RequestException\n ) {\n return (int) $e->getCode() === 429;\n }\n\n return false;\n }\n\n public function parseRetryAfter(Throwable $e): int\n {\n if (method_exists($e, 'getResponseHeaders')) {\n $headers = $e->getResponseHeaders() ?: [];\n $value = $headers['Retry-After'] ?? $headers['retry-after'] ?? null;\n if (is_array($value)) {\n $value = $value[0] ?? null;\n }\n if (is_numeric($value)) {\n return (int) $value;\n }\n }\n\n $policy = $this->parsePolicy($e);\n if ($policy === 'TEN_SECONDLY_ROLLING') {\n return 10;\n }\n if ($policy === 'SECONDLY') {\n return 1;\n }\n if ($policy === 'DAILY_LIMIT') {\n return 600;\n }\n\n $this->log->warning('[Hubspot] No retry-after header or policy name found, using default', [\n 'exception_class' => get_class($e),\n ]);\n\n return 10;\n }\n\n public function parsePolicy(Throwable $e): ?string\n {\n if (! method_exists($e, 'getResponseBody')) {\n return null;\n }\n\n $body = $e->getResponseBody();\n if (is_string($body)) {\n $body = json_decode($body, true) ?? [];\n }\n\n if (! is_array($body)) {\n return null;\n }\n\n $policy = $body['policyName'] ?? $body['policy'] ?? $body['context']['policyName'] ?? null;\n\n return is_string($policy) ? strtoupper($policy) : null;\n }\n\n public function getMinimumApiVersion(): string\n {\n return self::MIN_API_VERSION;\n }\n\n public function getInstance(): Factory\n {\n return new Factory([\n 'key' => $this->accessToken,\n 'oauth2' => true,\n 'base_url' => $this->baseUrl,\n ]);\n }\n\n public function getNewInstance(): Discovery\n {\n return \\HubSpot\\Factory::createWithAccessToken($this->accessToken);\n }\n\n /**\n * Secondly and daily limits for Hubspot API\n *\n * Product Tier: Free & Starter | Professional & Enterprise | API add-on (any tier)\n * Burst: 100/10 seconds | 150/10 seconds | 200/10 seconds\n * Daily: 250,000 | 500,000 | 1,000,000\n *\n * Official documentation states: The search endpoints are rate limited to five requests per second.\n * Since with 5 RPS were still hitting secondly rate limits we lowered it to 4\n */\n public function getPaginatedData(array $payload, string $type, int $offset = 0): array\n {\n $total = 0;\n $lastId = null;\n $rows = [];\n foreach ($this->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastId) as $row) {\n $rows[] = $row;\n }\n\n return ['results' => $rows, 'total' => $total, 'last_record' => $lastId];\n }\n\n /**\n * @throws HubspotException\n * @throws SocialAccountTokenInvalidException\n * @throws BadRequest\n */\n public function getPaginatedDataGenerator(\n array $payload,\n string $type,\n int $offset = 0,\n int &$total = 0,\n ?string &$lastRecordId = null\n ): \\Generator {\n return $this->paginationService->getPaginatedDataGenerator(\n $this,\n $payload,\n $type,\n $offset,\n $total,\n $lastRecordId\n );\n }\n\n /**\n * Execute a search request against HubSpot CRM objects with rate limiting.\n *\n * @param string $objectType The object type ('deals', 'companies', 'contacts', 'calls')\n * @param array<string, mixed> $payload The search payload with filters, sorts, properties, etc.\n * @return array The search response with 'results', 'total', 'paging' keys\n * @throws RateLimitException When rate limit is hit\n * @throws HubspotException On API errors\n */\n public function search(string $objectType, array $payload): array\n {\n $endpoint = self::BASE_URL . \"/crm/v3/objects/{$objectType}/search\";\n\n return $this->executeRequest(function () use ($endpoint, $payload) {\n $response = $this->getInstance()->getClient()->request('POST', $endpoint, ['json' => $payload]);\n\n return $response->toArray();\n });\n }\n\n /**\n * @throws DealApiException\n * @throws CrmException\n */\n public function getOpportunityById(string $crmId, array $fields): array\n {\n try {\n// $deal = $this->executeRequest(fn () => $this->getNewInstance()->crm()->deals()->basicApi()->getById(\n $deal = $this->getNewInstance()->crm()->deals()->basicApi()->getById(\n $crmId,\n implode(',', $fields),\n 'companies,contacts'\n );\n } catch (DealApiException $e) {\n $this->log->info('[Hubspot] Failed to fetch opportunity', [\n 'crm_id' => $crmId,\n 'reason' => $e->getMessage(),\n ]);\n\n throw $e;\n }\n\n if (! $deal instanceof DealWithAssociations) {\n throw new CrmException('Deal not found');\n }\n\n return [\n 'id' => $deal->getId(),\n 'properties' => $deal->getProperties(),\n 'associations' => $deal->getAssociations(),\n ];\n }\n\n /**\n * Generic batch read method for HubSpot objects\n *\n * @param string $objectType The object type ('deals', 'companies', 'contacts')\n * @param array<string> $crmIds Array of HubSpot object IDs (max 100)\n * @param array<string> $fields Array of property names to fetch\n *\n * @return array<string, array> Array keyed by CRM ID with object data\n */\n private function batchReadObjects(string $objectType, array $crmIds, array $fields): array\n {\n if (empty($crmIds)) {\n return [];\n }\n\n $this->validateBatchSize($objectType, $crmIds);\n $this->ensureValidToken();\n\n try {\n $batchConfig = $this->createBatchConfiguration($objectType);\n $batchReadRequest = $this->prepareBatchRequest($batchConfig, $crmIds, $fields);\n $response = $batchConfig['api']->read($batchReadRequest);\n\n $this->validateApiResponse($response, $objectType);\n\n $results = $this->processApiResults($response);\n $this->logBatchResults($objectType, $crmIds, $results);\n\n return $results;\n } catch (\\Throwable $e) {\n $this->handleBatchError($e, $objectType, $crmIds);\n }\n }\n\n private function validateBatchSize(string $objectType, array $crmIds): void\n {\n if (count($crmIds) > 100) {\n throw new \\InvalidArgumentException(\"Batch size cannot exceed 100 {$objectType}\");\n }\n }\n\n private function createBatchConfiguration(string $objectType): array\n {\n $configurations = [\n 'deals' => [\n 'batchReadRequest' => new \\HubSpot\\Client\\Crm\\Deals\\Model\\BatchReadInputSimplePublicObjectId(),\n 'inputClass' => \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectId::class,\n 'api' => $this->getNewInstance()->crm()->deals()->batchApi(),\n ],\n 'companies' => [\n 'batchReadRequest' => new \\HubSpot\\Client\\Crm\\Companies\\Model\\BatchReadInputSimplePublicObjectId(),\n 'inputClass' => \\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectId::class,\n 'api' => $this->getNewInstance()->crm()->companies()->batchApi(),\n ],\n 'contacts' => [\n 'batchReadRequest' => new \\HubSpot\\Client\\Crm\\Contacts\\Model\\BatchReadInputSimplePublicObjectId(),\n 'inputClass' => \\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectId::class,\n 'api' => $this->getNewInstance()->crm()->contacts()->batchApi(),\n ],\n ];\n\n if (! isset($configurations[$objectType])) {\n throw new \\InvalidArgumentException(\"Unsupported object type: {$objectType}\");\n }\n\n return $configurations[$objectType];\n }\n\n private function prepareBatchRequest(array $batchConfig, array $crmIds, array $fields): object\n {\n $batchReadRequest = $batchConfig['batchReadRequest'];\n $inputClass = $batchConfig['inputClass'];\n\n $inputs = array_map(function ($crmId) use ($inputClass) {\n $input = new $inputClass();\n $input->setId($crmId);\n\n return $input;\n }, $crmIds);\n\n $batchReadRequest->setInputs($inputs);\n $batchReadRequest->setProperties($fields);\n\n return $batchReadRequest;\n }\n\n private function validateApiResponse($response, string $objectType): void\n {\n if (! $response) {\n throw new CrmException(\"HubSpot API returned null response for {$objectType} batch read\");\n }\n }\n\n private function processApiResults($response): array\n {\n $results = [];\n $responseResults = $response->getResults();\n\n if ($responseResults) {\n foreach ($responseResults as $object) {\n if ($object && $object->getId()) {\n $results[$object->getId()] = [\n 'id' => $object->getId(),\n 'properties' => $object->getProperties() ?: [],\n ];\n }\n }\n }\n\n return $results;\n }\n\n private function logBatchResults(string $objectType, array $crmIds, array $results): void\n {\n $this->log->info(\"[HubSpot] Batch fetched {$objectType}\", [\n 'requested_count' => count($crmIds),\n 'returned_count' => count($results),\n 'crm_ids' => $crmIds,\n ]);\n }\n\n private function handleBatchError(\\Throwable $e, string $objectType, array $crmIds): void\n {\n $errorMessage = $e->getMessage() ?: 'Unknown error';\n $errorTrace = $e->getTraceAsString() ?: 'No trace available';\n\n $this->log->error(\"[HubSpot] Failed to batch fetch {$objectType}\", [\n 'crm_ids' => $crmIds,\n 'error' => $errorMessage,\n 'trace' => $errorTrace,\n ]);\n\n throw new CrmException(\"Failed to batch fetch {$objectType}: \" . $errorMessage);\n }\n\n /**\n * Batch read multiple opportunities by their CRM IDs\n *\n * @param array<string> $crmIds Array of HubSpot deal IDs (max 100)\n * @param array<string> $fields Array of property names to fetch\n *\n * @return array<string, array> Array keyed by CRM ID with opportunity data\n */\n public function getOpportunitiesByIds(array $crmIds, array $fields): array\n {\n return $this->batchReadObjects('deals', $crmIds, $fields);\n }\n\n /**\n * Batch read multiple companies by their CRM IDs\n *\n * @param array<string> $crmIds Array of HubSpot company IDs (max 100)\n * @param array<string> $fields Array of property names to fetch\n *\n * @return array<string, array> Array keyed by CRM ID with company data\n */\n public function getCompaniesByIds(array $crmIds, array $fields): array\n {\n return $this->batchReadObjects('companies', $crmIds, $fields);\n }\n\n /**\n * Batch read multiple contacts by their CRM IDs\n *\n * @param array<string> $crmIds Array of HubSpot contact IDs (max 100)\n * @param array<string> $fields Array of property names to fetch\n *\n * @return array<string, array> Array keyed by CRM ID with contact data\n */\n public function getContactsByIds(array $crmIds, array $fields): array\n {\n return $this->batchReadObjects('contacts', $crmIds, $fields);\n }\n\n /**\n * @throws CompanyApiException\n * @throws CrmException\n */\n public function getAccountById(string $crmId, array $fields): array\n {\n try {\n $company = $this->getNewInstance()->crm()->companies()->basicApi()->getById(\n $crmId,\n implode(',', $fields),\n );\n } catch (CompanyApiException $e) {\n $this->log->info('[Hubspot] Failed to fetch account', [\n 'crm_id' => $crmId,\n 'reason' => $e->getMessage(),\n ]);\n\n throw $e;\n }\n\n if (! $company instanceof CompaniesWithAssociations) {\n throw new CrmException('Account not found');\n }\n\n return [\n 'id' => $company->getId(),\n 'properties' => $company->getProperties(),\n ];\n }\n\n /**\n * @throws ContactApiException\n * @throws CrmException\n */\n public function getContactById(string $crmId, array $fields): array\n {\n try {\n $contact = $this->getNewInstance()->crm()->contacts()->basicApi()->getById(\n $crmId,\n implode(',', $fields)\n );\n } catch (ContactApiException $e) {\n $this->log->info('[Hubspot] Failed to fetch contact', [\n 'crm_id' => $crmId,\n 'reason' => $e->getMessage(),\n ]);\n\n throw $e;\n }\n\n if (! $contact instanceof ContactsWithAssociations) {\n throw new CrmException('Contact not found');\n }\n\n return [\n 'id' => $contact->getId(),\n 'properties' => $contact->getProperties(),\n ];\n }\n\n /**\n * This is email search request that Hubspot offers as GET (more generous quota)\n */\n public function getContactByEmail(string $email, array $fields = []): array\n {\n try {\n $contact = $this->getNewInstance()->crm()->contacts()->basicApi()->getById(\n $email,\n implode(',', $fields),\n null,\n false,\n 'email'\n );\n\n return [\n 'id' => $contact->getId(),\n 'properties' => $contact->getProperties(),\n ];\n } catch (ContactApiException $e) {\n $this->log->info('[Hubspot] Failed to fetch contact', [\n 'email' => $email,\n 'reason' => $e->getMessage(),\n ]);\n\n return [];\n }\n }\n\n /**\n * @throws CrmException\n */\n public function fetchProperty(string $objectType, string $propertyId): Property\n {\n $result = $this->getNewInstance()->crm()->properties()->coreApi()->getByName($objectType, $propertyId);\n\n if (! $result instanceof Property) {\n $this->log->error('[Hubspot] Failed to fetch property', [\n 'object_type' => $objectType,\n 'property_id' => $propertyId,\n 'reason' => $result->getMessage(),\n ]);\n\n throw new CrmException('Failed to fetch property');\n }\n\n return $result;\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchPropertyOptions(string $objectType, string $propertyId): array\n {\n /** @var array<CrmFieldOption> */\n return $this->fetchProperty($objectType, $propertyId)->getOptions();\n }\n\n /**\n * @return array<array{id:string, label:string, deleted:bool}>\n */\n public function fetchCallDispositions(): array\n {\n /** @var Response $response */\n $response = $this->getInstance()->engagements()->getCallDispositions();\n\n /**\n * @var array<array{\n * id:string,\n * label:string,\n * deleted: bool\n * }>\n */\n return $response->toArray();\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchOpportunityPipelineStages(): array\n {\n $stages = [];\n $apiResponse = $this->getNewInstance()->crm()->pipelines()->pipelinesApi()->getAll('deals');\n\n if ($apiResponse instanceof Error) {\n $this->log->error('[Hubspot] Failed to fetch opportunity pipelines', [\n 'reason' => $apiResponse->getMessage(),\n ]);\n\n return [];\n }\n\n foreach ($apiResponse->getResults() as $pipeline) {\n $pipelineStages = array_map(\n static function (PipelineStage $stage) {\n return [\n 'id' => $stage->getId(),\n 'label' => $stage->getLabel(),\n ];\n },\n $pipeline->getStages()\n );\n\n $stages = array_merge($stages, $pipelineStages);\n }\n\n return $stages;\n }\n\n public function fetchOpportunityPipelines(): array\n {\n $pipelines = [];\n\n try {\n $apiResponse = $this->makeRequest('/crm/v3/pipelines/deals');\n } catch (\\Exception $e) {\n $this->log->info('[Hubspot] Failed to fetch opportunity pipelines', [\n 'reason' => $e->getMessage(),\n ]);\n\n return [];\n }\n\n $response = $apiResponse->toArray();\n\n foreach ($response['results'] as $pipeline) {\n $pipelines[] = [\n 'id' => $pipeline['id'],\n 'label' => $pipeline['label'],\n ];\n }\n\n return $pipelines;\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchMeetingOutcomeFieldOptions(Field $field): array\n {\n return $field->getCrmProviderId() === 'meetingOutcome'\n ? $this->fetchMeetingOutcomeTypes()\n : $this->fetchCallActivityTypes();\n }\n\n public function fetchMeetingOutcomeTypes(): array\n {\n return $this->extractMeetingTypeOptions(\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome'\n );\n }\n\n public function fetchCallActivityTypes(): array\n {\n return $this->extractMeetingTypeOptions(\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type'\n );\n }\n\n private function extractMeetingTypeOptions(string $endpoint): array\n {\n /** @var Response $response */\n $response = $this->getInstance()\n ->getClient()\n ->request('GET', $endpoint);\n\n /**\n * @var array<array{\n * value: string,\n * label: string,\n * displayOrder: int\n * }> $optionData\n */\n $optionData = $response->toArray()['options'] ?? [];\n\n $options = [];\n foreach ($optionData as $item) {\n $options[] = [\n 'id' => $item['value'],\n 'value' => $item['value'],\n 'label' => $item['label'],\n 'display_order' => $item['displayOrder'],\n ];\n }\n\n return $options;\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchDispositionFieldOptions(): array\n {\n $options = [];\n\n $dispositions = $this->fetchCallDispositions();\n\n foreach ($dispositions as $disposition) {\n if ($disposition['deleted'] !== false) {\n continue;\n }\n\n $option['value'] = $disposition['id'];\n $option['id'] = $disposition['id'];\n $option['label'] = $disposition['label'];\n\n $options[] = $option;\n }\n\n return $options;\n }\n\n /**\n * @return array<CrmFieldOption>\n */\n public function fetchOpportunityFieldOptions(Field $field): array\n {\n if ($field->isStageField()) {\n return $this->fetchOpportunityPipelineStages();\n }\n\n if ($field->isPipelineField()) {\n return $this->fetchOpportunityPipelines();\n }\n\n return $this->fetchPropertyOptions('deals', $field->getCrmProviderId());\n }\n\n /**\n * @throws BadRequest\n * @throws HubspotException\n */\n public function makeRequest(string $endpoint, $method = 'GET', $payload = [], ?string $queryString = null)\n {\n $endpoint = self::BASE_URL . $endpoint;\n\n if ($method === 'GET') {\n return $this->getInstance()->getClient()?->request(\n method: $method,\n endpoint: $endpoint,\n query_string: $queryString\n );\n } else {\n return $this->getInstance()->getClient()->request($method, $endpoint, [\n 'json' => ($payload),\n ]);\n }\n }\n\n /**\n * @throws BadRequest\n * @throws HubspotException\n */\n public function createMeeting(array $payload): Response\n {\n $endpoint = '/crm/v3/objects/meetings';\n\n return $this->makeRequest($endpoint, 'POST', $payload);\n }\n\n /**\n * @throws BadRequest\n * @throws HubspotException\n */\n public function updateMeeting(string $meetingId, array $payload): Response\n {\n $endpoint = '/crm/v3/objects/meetings/' . $meetingId;\n\n return $this->makeRequest($endpoint, 'PATCH', $payload);\n }\n\n /**\n * @throws \\Exception\n */\n public function createNote(\n string $body,\n string $ownerId,\n int $timestamp,\n string $objectId,\n NoteObject $noteObject\n ): ?string {\n try {\n $noteInput = new SimplePublicObjectInput([\n 'properties' => [\n 'hs_note_body' => $body,\n 'hubspot_owner_id' => $ownerId,\n 'hs_timestamp' => $timestamp,\n ],\n ]);\n\n // Create note\n $note = $this->getNewInstance()->crm()->objects()->basicApi()->create('note', $noteInput);\n\n $this->getNewInstance()->crm()->objects()->associationsApi()->create(\n 'note',\n $note->getId(),\n $this->getNoteObject($noteObject),\n $objectId,\n $this->getNoteAssociationType($noteObject),\n );\n\n return $note->getId();\n } catch (\\Exception $e) {\n $this->log->error('[Hubspot] Failed to create note', [\n 'objectId' => $objectId,\n 'noteObject' => $noteObject->getObjectType(),\n 'reason' => $e->getMessage(),\n ]);\n\n \\Sentry::captureException($e);\n }\n\n return null;\n }\n\n public function updateEngagement(string $objectId, array $engagement, array $metadata): void\n {\n $this->getInstance()->engagements()->update($objectId, $engagement, $metadata);\n }\n\n public function getEngagementData(string $engagementId): array\n {\n $engagement = $this->getInstance()->engagements()->get($engagementId);\n\n return $engagement->toArray();\n }\n\n public function createEngagement(array $engagement, array $associations, array $metadata): Response\n {\n return $this->getInstance()\n ->engagements()\n ->create($engagement, $associations, $metadata);\n }\n\n public function isUnauthorizedException(\\Exception $e): bool\n {\n // Check for specific HubSpot API exception types first\n if ($e instanceof BadRequest) {\n // BadRequest can contain 401 status codes\n return $e->getCode() === 401;\n }\n\n // Check for HTTP client exceptions with status codes\n if ($e instanceof \\GuzzleHttp\\Exception\\RequestException && $e->hasResponse()) {\n $response = $e->getResponse();\n if ($response !== null) {\n return $response->getStatusCode() === 401;\n }\n }\n\n // Check for Guzzle HTTP exceptions\n if ($e instanceof \\GuzzleHttp\\Exception\\ClientException) {\n return $e->getCode() === 401;\n }\n\n // Fallback to string matching as last resort, but be more specific\n $message = strtolower($e->getMessage());\n\n return str_contains($message, '401 unauthorized') ||\n str_contains($message, 'http 401') ||\n str_contains($message, 'status code 401') ||\n (preg_match('/\\b401\\b/', $message) && str_contains($message, 'unauthorized'));\n }\n\n /**\n * Validates and refreshes the access token if needed before API requests.\n * This ensures long-running processes don't fail due to token expiration.\n *\n * @throws SocialAccountTokenInvalidException\n */\n public function ensureValidToken(): void\n {\n if ($this->oauthAccount === null) {\n return;\n }\n\n $newToken = $this->tokenManager->ensureValidToken($this->oauthAccount);\n if ($newToken !== null) {\n $this->accessToken = $newToken;\n }\n }\n\n public function getConfig()\n {\n return $this->config;\n }\n\n // returns only active (archived=false)\n public function getOwners(): array\n {\n return $this->getNewInstance()->crm()->owners()->getAll();\n }\n\n /**\n * @param bool $archived\n *\n * @return array<Owner>|[]\n */\n public function getOwnersArchived(bool $archived = true): array\n {\n $endpoint = '/crm/v3/owners';\n $queryParams = [\n 'archived' => $archived ? 'true' : 'false',\n ];\n $queryString = http_build_query($queryParams);\n\n $owners = [];\n\n try {\n $response = $this->makeRequest(endpoint: $endpoint, queryString: $queryString);\n $responseData = $response?->toArray();\n\n foreach ($responseData['results'] as $result) {\n try {\n $owners[] = Owner::create($result);\n } catch (Throwable $e) {\n $this->log->error('[HubSpot] Failed to process owner data', [\n 'result' => $result,\n 'error' => $e->getMessage(),\n ]);\n\n continue;\n }\n }\n } catch (Throwable $e) {\n $this->log->error('HubSpot] Failed to fetch owners', [\n 'archived' => $archived,\n 'error' => $e->getMessage(),\n ]);\n\n return [];\n }\n\n return $owners;\n }\n\n public function getMeeting(string $engagementId): ObjectWithAssociations\n {\n return $this->getNewInstance()->crm()->objects()->basicApi()\n ->getById('meeting', $engagementId, null, 'contact,company,deal');\n }\n\n public function deleteEngagement(string $engagementId): void\n {\n $this->getInstance()->engagements()->delete((int) $engagementId);\n }\n\n public function getAssociationsData(array $ids, string $fromObject, string $toObject): array\n {\n $associationData = [];\n $idChunks = array_chunk($ids, self::ASSOCIATIONS_BATCH_SIZE_LIMIT);\n\n foreach ($idChunks as $idChunk) {\n try {\n $batchInput = new \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId();\n $batchInput->setInputs(array_map(function ($id) {\n $publicObjectId = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId();\n $publicObjectId->setId($id);\n\n return $publicObjectId;\n }, $idChunk));\n\n $associatedObjectsData = $this\n ->getNewInstance()\n ->crm()\n ->associations()\n ->batchApi()\n ->read($fromObject, $toObject, $batchInput);\n\n if ($associatedObjectsData instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti) {\n foreach ($associatedObjectsData->getResults() as $association) {\n $from = $association->getFrom()->getId();\n $toAssociations = $association->getTo();\n\n if (! empty($toAssociations)) {\n $associationData[$from] = array_map(function ($item) {\n return $item->getId();\n }, $toAssociations);\n }\n }\n }\n// } catch (RateLimitException $e) {\n// throw $e;\n } catch (\\Exception $e) {\n $this->log->error('[Hubspot] Failed to fetch associations', [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => $e->getMessage(),\n ]);\n }\n }\n\n return $associationData;\n }\n\n /**\n * @throws \\Exception\n */\n private function getNoteAssociationType(NoteObject $noteObject): string\n {\n return match($noteObject) {\n NoteObject::Opportunity => 'note_to_deal',\n NoteObject::Lead, NoteObject::Contact => 'note_to_contact', // or 'note_to_lead' if your portal supports it\n NoteObject::Account => 'note_to_company',\n NoteObject::Call, NoteObject::Event => throw new \\Exception('Not supported'),\n };\n }\n\n /**\n * @throws \\Exception\n */\n private function getNoteObject(NoteObject $noteObject): string\n {\n return match($noteObject) {\n NoteObject::Opportunity => 'deal',\n NoteObject::Lead, NoteObject::Contact => 'contact',\n NoteObject::Account => 'company',\n NoteObject::Call, NoteObject::Event => throw new \\Exception('Not supported'),\n };\n }\n\n public function addAssociations(string $objectType, string $associationType, array $payload): Response\n {\n $endpoint = \"/crm/v4/associations/$objectType/$associationType/batch/create\";\n\n return $this->makeRequest($endpoint, 'POST', $payload);\n }\n\n public function removeAssociations(string $objectType, string $associationType, array $payload): Response\n {\n $endpoint = \"/crm/v4/associations/$objectType/$associationType/batch/archive\";\n\n return $this->makeRequest($endpoint, 'POST', $payload);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.60206115,"top":0.08060654,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.6146942,"top":0.07980846,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Received 429 from API","depth":4,"bounds":{"left":0.6256649,"top":0.07980846,"width":0.0631649,"height":0.015961692},"on_screen":true,"value":"Received 429 from API","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.6978058,"top":0.07980846,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.7077792,"top":0.07980846,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-9159396282993816305
|
5225837844252985700
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
67
3
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Crm\Hubspot;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations as ContactsWithAssociations;
use HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations as CompaniesWithAssociations;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Objects\Model\SimplePublicObjectInput;
use HubSpot\Client\Crm\Objects\Model\SimplePublicObjectWithAssociations as ObjectWithAssociations;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery\Discovery;
use Jiminny\Exceptions\CrmException;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Exceptions\SocialAccountTokenInvalidException;
use Jiminny\Jobs\Crm\NoteObject;
use Jiminny\Models\Crm\Field;
use Jiminny\Services\Crm\BaseClient;
use Jiminny\Services\Crm\Hubspot\DTO\Response\Owner;
use Jiminny\Services\SocialAccountService;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Exceptions\HubspotException;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Response;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Illuminate\Support\Facades\Redis;
use Throwable;
/**
* @phpstan-type CrmFieldOption array{id:string, label:string, value?:string}
*/
class Client extends BaseClient implements HubspotClientInterface
{
public const string MIN_API_VERSION = '2';
public const string BASE_URL = '[URL_WITH_CREDENTIALS] T
* @param callable(): T $apiCall
* @return T
*
* @throws RateLimitException
*/
private function executeRequest(callable $apiCall)
{
$cacheKey = $this->getRateLimitCacheKey();
$cachedRetryAfter = Redis::get($cacheKey);
if (is_string($cachedRetryAfter) && is_numeric($cachedRetryAfter)) {
throw new RateLimitException(
'Hubspot rate limit (cached circuit-breaker)',
(int) $cachedRetryAfter,
);
}
try {
return $apiCall();
} catch (Throwable $e) {
if ($this->isHubspotRateLimit($e)) {
$retryAfter = $this->parseRetryAfter($e);
Redis::setex($cacheKey, $retryAfter, (string) $retryAfter);
$this->log->warning('[Hubspot] Received 429 from API', [
'team_id' => $this->config->team_id,
'config_id' => $this->config->getId(),
'retry_after' => $retryAfter,
'policy' => $this->parsePolicy($e),
'reason' => $e->getMessage(),
]);
throw new RateLimitException('Hubspot returned 429', $retryAfter, $e);
}
throw $e;
}
}
private function getRateLimitCacheKey(): string
{
return sprintf('hubspot:ratelimit:portal:%d', $this->config->getId());
}
public function isHubspotRateLimit(Throwable $e): bool
{
if ($e instanceof BadRequest
|| $e instanceof DealApiException
|| $e instanceof ContactApiException
|| $e instanceof CompanyApiException
|| $e instanceof \GuzzleHttp\Exception\RequestException
) {
return (int) $e->getCode() === 429;
}
return false;
}
public function parseRetryAfter(Throwable $e): int
{
if (method_exists($e, 'getResponseHeaders')) {
$headers = $e->getResponseHeaders() ?: [];
$value = $headers['Retry-After'] ?? $headers['retry-after'] ?? null;
if (is_array($value)) {
$value = $value[0] ?? null;
}
if (is_numeric($value)) {
return (int) $value;
}
}
$policy = $this->parsePolicy($e);
if ($policy === 'TEN_SECONDLY_ROLLING') {
return 10;
}
if ($policy === 'SECONDLY') {
return 1;
}
if ($policy === 'DAILY_LIMIT') {
return 600;
}
$this->log->warning('[Hubspot] No retry-after header or policy name found, using default', [
'exception_class' => get_class($e),
]);
return 10;
}
public function parsePolicy(Throwable $e): ?string
{
if (! method_exists($e, 'getResponseBody')) {
return null;
}
$body = $e->getResponseBody();
if (is_string($body)) {
$body = json_decode($body, true) ?? [];
}
if (! is_array($body)) {
return null;
}
$policy = $body['policyName'] ?? $body['policy'] ?? $body['context']['policyName'] ?? null;
return is_string($policy) ? strtoupper($policy) : null;
}
public function getMinimumApiVersion(): string
{
return self::MIN_API_VERSION;
}
public function getInstance(): Factory
{
return new Factory([
'key' => $this->accessToken,
'oauth2' => true,
'base_url' => $this->baseUrl,
]);
}
public function getNewInstance(): Discovery
{
return \HubSpot\Factory::createWithAccessToken($this->accessToken);
}
/**
* Secondly and daily limits for Hubspot API
*
* Product Tier: Free & Starter | Professional & Enterprise | API add-on (any tier)
* Burst: 100/10 seconds | 150/10 seconds | 200/10 seconds
* Daily: 250,000 | 500,000 | 1,000,000
*
* Official documentation states: The search endpoints are rate limited to five requests per second.
* Since with 5 RPS were still hitting secondly rate limits we lowered it to 4
*/
public function getPaginatedData(array $payload, string $type, int $offset = 0): array
{
$total = 0;
$lastId = null;
$rows = [];
foreach ($this->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastId) as $row) {
$rows[] = $row;
}
return ['results' => $rows, 'total' => $total, 'last_record' => $lastId];
}
/**
* @throws HubspotException
* @throws SocialAccountTokenInvalidException
* @throws BadRequest
*/
public function getPaginatedDataGenerator(
array $payload,
string $type,
int $offset = 0,
int &$total = 0,
?string &$lastRecordId = null
): \Generator {
return $this->paginationService->getPaginatedDataGenerator(
$this,
$payload,
$type,
$offset,
$total,
$lastRecordId
);
}
/**
* Execute a search request against HubSpot CRM objects with rate limiting.
*
* @param string $objectType The object type ('deals', 'companies', 'contacts', 'calls')
* @param array<string, mixed> $payload The search payload with filters, sorts, properties, etc.
* @return array The search response with 'results', 'total', 'paging' keys
* @throws RateLimitException When rate limit is hit
* @throws HubspotException On API errors
*/
public function search(string $objectType, array $payload): array
{
$endpoint = self::BASE_URL . "/crm/v3/objects/{$objectType}/search";
return $this->executeRequest(function () use ($endpoint, $payload) {
$response = $this->getInstance()->getClient()->request('POST', $endpoint, ['json' => $payload]);
return $response->toArray();
});
}
/**
* @throws DealApiException
* @throws CrmException
*/
public function getOpportunityById(string $crmId, array $fields): array
{
try {
// $deal = $this->executeRequest(fn () => $this->getNewInstance()->crm()->deals()->basicApi()->getById(
$deal = $this->getNewInstance()->crm()->deals()->basicApi()->getById(
$crmId,
implode(',', $fields),
'companies,contacts'
);
} catch (DealApiException $e) {
$this->log->info('[Hubspot] Failed to fetch opportunity', [
'crm_id' => $crmId,
'reason' => $e->getMessage(),
]);
throw $e;
}
if (! $deal instanceof DealWithAssociations) {
throw new CrmException('Deal not found');
}
return [
'id' => $deal->getId(),
'properties' => $deal->getProperties(),
'associations' => $deal->getAssociations(),
];
}
/**
* Generic batch read method for HubSpot objects
*
* @param string $objectType The object type ('deals', 'companies', 'contacts')
* @param array<string> $crmIds Array of HubSpot object IDs (max 100)
* @param array<string> $fields Array of property names to fetch
*
* @return array<string, array> Array keyed by CRM ID with object data
*/
private function batchReadObjects(string $objectType, array $crmIds, array $fields): array
{
if (empty($crmIds)) {
return [];
}
$this->validateBatchSize($objectType, $crmIds);
$this->ensureValidToken();
try {
$batchConfig = $this->createBatchConfiguration($objectType);
$batchReadRequest = $this->prepareBatchRequest($batchConfig, $crmIds, $fields);
$response = $batchConfig['api']->read($batchReadRequest);
$this->validateApiResponse($response, $objectType);
$results = $this->processApiResults($response);
$this->logBatchResults($objectType, $crmIds, $results);
return $results;
} catch (\Throwable $e) {
$this->handleBatchError($e, $objectType, $crmIds);
}
}
private function validateBatchSize(string $objectType, array $crmIds): void
{
if (count($crmIds) > 100) {
throw new \InvalidArgumentException("Batch size cannot exceed 100 {$objectType}");
}
}
private function createBatchConfiguration(string $objectType): array
{
$configurations = [
'deals' => [
'batchReadRequest' => new \HubSpot\Client\Crm\Deals\Model\BatchReadInputSimplePublicObjectId(),
'inputClass' => \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectId::class,
'api' => $this->getNewInstance()->crm()->deals()->batchApi(),
],
'companies' => [
'batchReadRequest' => new \HubSpot\Client\Crm\Companies\Model\BatchReadInputSimplePublicObjectId(),
'inputClass' => \HubSpot\Client\Crm\Companies\Model\SimplePublicObjectId::class,
'api' => $this->getNewInstance()->crm()->companies()->batchApi(),
],
'contacts' => [
'batchReadRequest' => new \HubSpot\Client\Crm\Contacts\Model\BatchReadInputSimplePublicObjectId(),
'inputClass' => \HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectId::class,
'api' => $this->getNewInstance()->crm()->contacts()->batchApi(),
],
];
if (! isset($configurations[$objectType])) {
throw new \InvalidArgumentException("Unsupported object type: {$objectType}");
}
return $configurations[$objectType];
}
private function prepareBatchRequest(array $batchConfig, array $crmIds, array $fields): object
{
$batchReadRequest = $batchConfig['batchReadRequest'];
$inputClass = $batchConfig['inputClass'];
$inputs = array_map(function ($crmId) use ($inputClass) {
$input = new $inputClass();
$input->setId($crmId);
return $input;
}, $crmIds);
$batchReadRequest->setInputs($inputs);
$batchReadRequest->setProperties($fields);
return $batchReadRequest;
}
private function validateApiResponse($response, string $objectType): void
{
if (! $response) {
throw new CrmException("HubSpot API returned null response for {$objectType} batch read");
}
}
private function processApiResults($response): array
{
$results = [];
$responseResults = $response->getResults();
if ($responseResults) {
foreach ($responseResults as $object) {
if ($object && $object->getId()) {
$results[$object->getId()] = [
'id' => $object->getId(),
'properties' => $object->getProperties() ?: [],
];
}
}
}
return $results;
}
private function logBatchResults(string $objectType, array $crmIds, array $results): void
{
$this->log->info("[HubSpot] Batch fetched {$objectType}", [
'requested_count' => count($crmIds),
'returned_count' => count($results),
'crm_ids' => $crmIds,
]);
}
private function handleBatchError(\Throwable $e, string $objectType, array $crmIds): void
{
$errorMessage = $e->getMessage() ?: 'Unknown error';
$errorTrace = $e->getTraceAsString() ?: 'No trace available';
$this->log->error("[HubSpot] Failed to batch fetch {$objectType}", [
'crm_ids' => $crmIds,
'error' => $errorMessage,
'trace' => $errorTrace,
]);
throw new CrmException("Failed to batch fetch {$objectType}: " . $errorMessage);
}
/**
* Batch read multiple opportunities by their CRM IDs
*
* @param array<string> $crmIds Array of HubSpot deal IDs (max 100)
* @param array<string> $fields Array of property names to fetch
*
* @return array<string, array> Array keyed by CRM ID with opportunity data
*/
public function getOpportunitiesByIds(array $crmIds, array $fields): array
{
return $this->batchReadObjects('deals', $crmIds, $fields);
}
/**
* Batch read multiple companies by their CRM IDs
*
* @param array<string> $crmIds Array of HubSpot company IDs (max 100)
* @param array<string> $fields Array of property names to fetch
*
* @return array<string, array> Array keyed by CRM ID with company data
*/
public function getCompaniesByIds(array $crmIds, array $fields): array
{
return $this->batchReadObjects('companies', $crmIds, $fields);
}
/**
* Batch read multiple contacts by their CRM IDs
*
* @param array<string> $crmIds Array of HubSpot contact IDs (max 100)
* @param array<string> $fields Array of property names to fetch
*
* @return array<string, array> Array keyed by CRM ID with contact data
*/
public function getContactsByIds(array $crmIds, array $fields): array
{
return $this->batchReadObjects('contacts', $crmIds, $fields);
}
/**
* @throws CompanyApiException
* @throws CrmException
*/
public function getAccountById(string $crmId, array $fields): array
{
try {
$company = $this->getNewInstance()->crm()->companies()->basicApi()->getById(
$crmId,
implode(',', $fields),
);
} catch (CompanyApiException $e) {
$this->log->info('[Hubspot] Failed to fetch account', [
'crm_id' => $crmId,
'reason' => $e->getMessage(),
]);
throw $e;
}
if (! $company instanceof CompaniesWithAssociations) {
throw new CrmException('Account not found');
}
return [
'id' => $company->getId(),
'properties' => $company->getProperties(),
];
}
/**
* @throws ContactApiException
* @throws CrmException
*/
public function getContactById(string $crmId, array $fields): array
{
try {
$contact = $this->getNewInstance()->crm()->contacts()->basicApi()->getById(
$crmId,
implode(',', $fields)
);
} catch (ContactApiException $e) {
$this->log->info('[Hubspot] Failed to fetch contact', [
'crm_id' => $crmId,
'reason' => $e->getMessage(),
]);
throw $e;
}
if (! $contact instanceof ContactsWithAssociations) {
throw new CrmException('Contact not found');
}
return [
'id' => $contact->getId(),
'properties' => $contact->getProperties(),
];
}
/**
* This is email search request that Hubspot offers as GET (more generous quota)
*/
public function getContactByEmail(string $email, array $fields = []): array
{
try {
$contact = $this->getNewInstance()->crm()->contacts()->basicApi()->getById(
$email,
implode(',', $fields),
null,
false,
'email'
);
return [
'id' => $contact->getId(),
'properties' => $contact->getProperties(),
];
} catch (ContactApiException $e) {
$this->log->info('[Hubspot] Failed to fetch contact', [
'email' => $email,
'reason' => $e->getMessage(),
]);
return [];
}
}
/**
* @throws CrmException
*/
public function fetchProperty(string $objectType, string $propertyId): Property
{
$result = $this->getNewInstance()->crm()->properties()->coreApi()->getByName($objectType, $propertyId);
if (! $result instanceof Property) {
$this->log->error('[Hubspot] Failed to fetch property', [
'object_type' => $objectType,
'property_id' => $propertyId,
'reason' => $result->getMessage(),
]);
throw new CrmException('Failed to fetch property');
}
return $result;
}
/**
* @return array<CrmFieldOption>
*/
public function fetchPropertyOptions(string $objectType, string $propertyId): array
{
/** @var array<CrmFieldOption> */
return $this->fetchProperty($objectType, $propertyId)->getOptions();
}
/**
* @return array<array{id:string, label:string, deleted:bool}>
*/
public function fetchCallDispositions(): array
{
/** @var Response $response */
$response = $this->getInstance()->engagements()->getCallDispositions();
/**
* @var array<array{
* id:string,
* label:string,
* deleted: bool
* }>
*/
return $response->toArray();
}
/**
* @return array<CrmFieldOption>
*/
public function fetchOpportunityPipelineStages(): array
{
$stages = [];
$apiResponse = $this->getNewInstance()->crm()->pipelines()->pipelinesApi()->getAll('deals');
if ($apiResponse instanceof Error) {
$this->log->error('[Hubspot] Failed to fetch opportunity pipelines', [
'reason' => $apiResponse->getMessage(),
]);
return [];
}
foreach ($apiResponse->getResults() as $pipeline) {
$pipelineStages = array_map(
static function (PipelineStage $stage) {
return [
'id' => $stage->getId(),
'label' => $stage->getLabel(),
];
},
$pipeline->getStages()
);
$stages = array_merge($stages, $pipelineStages);
}
return $stages;
}
public function fetchOpportunityPipelines(): array
{
$pipelines = [];
try {
$apiResponse = $this->makeRequest('/crm/v3/pipelines/deals');
} catch (\Exception $e) {
$this->log->info('[Hubspot] Failed to fetch opportunity pipelines', [
'reason' => $e->getMessage(),
]);
return [];
}
$response = $apiResponse->toArray();
foreach ($response['results'] as $pipeline) {
$pipelines[] = [
'id' => $pipeline['id'],
'label' => $pipeline['label'],
];
}
return $pipelines;
}
/**
* @return array<CrmFieldOption>
*/
public function fetchMeetingOutcomeFieldOptions(Field $field): array
{
return $field->getCrmProviderId() === 'meetingOutcome'
? $this->fetchMeetingOutcomeTypes()
: $this->fetchCallActivityTypes();
}
public function fetchMeetingOutcomeTypes(): array
{
return $this->extractMeetingTypeOptions(
'[URL_WITH_CREDENTIALS] Response $response */
$response = $this->getInstance()
->getClient()
->request('GET', $endpoint);
/**
* @var array<array{
* value: string,
* label: string,
* displayOrder: int
* }> $optionData
*/
$optionData = $response->toArray()['options'] ?? [];
$options = [];
foreach ($optionData as $item) {
$options[] = [
'id' => $item['value'],
'value' => $item['value'],
'label' => $item['label'],
'display_order' => $item['displayOrder'],
];
}
return $options;
}
/**
* @return array<CrmFieldOption>
*/
public function fetchDispositionFieldOptions(): array
{
$options = [];
$dispositions = $this->fetchCallDispositions();
foreach ($dispositions as $disposition) {
if ($disposition['deleted'] !== false) {
continue;
}
$option['value'] = $disposition['id'];
$option['id'] = $disposition['id'];
$option['label'] = $disposition['label'];
$options[] = $option;
}
return $options;
}
/**
* @return array<CrmFieldOption>
*/
public function fetchOpportunityFieldOptions(Field $field): array
{
if ($field->isStageField()) {
return $this->fetchOpportunityPipelineStages();
}
if ($field->isPipelineField()) {
return $this->fetchOpportunityPipelines();
}
return $this->fetchPropertyOptions('deals', $field->getCrmProviderId());
}
/**
* @throws BadRequest
* @throws HubspotException
*/
public function makeRequest(string $endpoint, $method = 'GET', $payload = [], ?string $queryString = null)
{
$endpoint = self::BASE_URL . $endpoint;
if ($method === 'GET') {
return $this->getInstance()->getClient()?->request(
method: $method,
endpoint: $endpoint,
query_string: $queryString
);
} else {
return $this->getInstance()->getClient()->request($method, $endpoint, [
'json' => ($payload),
]);
}
}
/**
* @throws BadRequest
* @throws HubspotException
*/
public function createMeeting(array $payload): Response
{
$endpoint = '/crm/v3/objects/meetings';
return $this->makeRequest($endpoint, 'POST', $payload);
}
/**
* @throws BadRequest
* @throws HubspotException
*/
public function updateMeeting(string $meetingId, array $payload): Response
{
$endpoint = '/crm/v3/objects/meetings/' . $meetingId;
return $this->makeRequest($endpoint, 'PATCH', $payload);
}
/**
* @throws \Exception
*/
public function createNote(
string $body,
string $ownerId,
int $timestamp,
string $objectId,
NoteObject $noteObject
): ?string {
try {
$noteInput = new SimplePublicObjectInput([
'properties' => [
'hs_note_body' => $body,
'hubspot_owner_id' => $ownerId,
'hs_timestamp' => $timestamp,
],
]);
// Create note
$note = $this->getNewInstance()->crm()->objects()->basicApi()->create('note', $noteInput);
$this->getNewInstance()->crm()->objects()->associationsApi()->create(
'note',
$note->getId(),
$this->getNoteObject($noteObject),
$objectId,
$this->getNoteAssociationType($noteObject),
);
return $note->getId();
} catch (\Exception $e) {
$this->log->error('[Hubspot] Failed to create note', [
'objectId' => $objectId,
'noteObject' => $noteObject->getObjectType(),
'reason' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return null;
}
public function updateEngagement(string $objectId, array $engagement, array $metadata): void
{
$this->getInstance()->engagements()->update($objectId, $engagement, $metadata);
}
public function getEngagementData(string $engagementId): array
{
$engagement = $this->getInstance()->engagements()->get($engagementId);
return $engagement->toArray();
}
public function createEngagement(array $engagement, array $associations, array $metadata): Response
{
return $this->getInstance()
->engagements()
->create($engagement, $associations, $metadata);
}
public function isUnauthorizedException(\Exception $e): bool
{
// Check for specific HubSpot API exception types first
if ($e instanceof BadRequest) {
// BadRequest can contain 401 status codes
return $e->getCode() === 401;
}
// Check for HTTP client exceptions with status codes
if ($e instanceof \GuzzleHttp\Exception\RequestException && $e->hasResponse()) {
$response = $e->getResponse();
if ($response !== null) {
return $response->getStatusCode() === 401;
}
}
// Check for Guzzle HTTP exceptions
if ($e instanceof \GuzzleHttp\Exception\ClientException) {
return $e->getCode() === 401;
}
// Fallback to string matching as last resort, but be more specific
$message = strtolower($e->getMessage());
return str_contains($message, '401 unauthorized') ||
str_contains($message, 'http 401') ||
str_contains($message, 'status code 401') ||
(preg_match('/\b401\b/', $message) && str_contains($message, 'unauthorized'));
}
/**
* Validates and refreshes the access token if needed before API requests.
* This ensures long-running processes don't fail due to token expiration.
*
* @throws SocialAccountTokenInvalidException
*/
public function ensureValidToken(): void
{
if ($this->oauthAccount === null) {
return;
}
$newToken = $this->tokenManager->ensureValidToken($this->oauthAccount);
if ($newToken !== null) {
$this->accessToken = $newToken;
}
}
public function getConfig()
{
return $this->config;
}
// returns only active (archived=false)
public function getOwners(): array
{
return $this->getNewInstance()->crm()->owners()->getAll();
}
/**
* @param bool $archived
*
* @return array<Owner>|[]
*/
public function getOwnersArchived(bool $archived = true): array
{
$endpoint = '/crm/v3/owners';
$queryParams = [
'archived' => $archived ? 'true' : 'false',
];
$queryString = http_build_query($queryParams);
$owners = [];
try {
$response = $this->makeRequest(endpoint: $endpoint, queryString: $queryString);
$responseData = $response?->toArray();
foreach ($responseData['results'] as $result) {
try {
$owners[] = Owner::create($result);
} catch (Throwable $e) {
$this->log->error('[HubSpot] Failed to process owner data', [
'result' => $result,
'error' => $e->getMessage(),
]);
continue;
}
}
} catch (Throwable $e) {
$this->log->error('HubSpot] Failed to fetch owners', [
'archived' => $archived,
'error' => $e->getMessage(),
]);
return [];
}
return $owners;
}
public function getMeeting(string $engagementId): ObjectWithAssociations
{
return $this->getNewInstance()->crm()->objects()->basicApi()
->getById('meeting', $engagementId, null, 'contact,company,deal');
}
public function deleteEngagement(string $engagementId): void
{
$this->getInstance()->engagements()->delete((int) $engagementId);
}
public function getAssociationsData(array $ids, string $fromObject, string $toObject): array
{
$associationData = [];
$idChunks = array_chunk($ids, self::ASSOCIATIONS_BATCH_SIZE_LIMIT);
foreach ($idChunks as $idChunk) {
try {
$batchInput = new \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId();
$batchInput->setInputs(array_map(function ($id) {
$publicObjectId = new \HubSpot\Client\Crm\Associations\Model\PublicObjectId();
$publicObjectId->setId($id);
return $publicObjectId;
}, $idChunk));
$associatedObjectsData = $this
->getNewInstance()
->crm()
->associations()
->batchApi()
->read($fromObject, $toObject, $batchInput);
if ($associatedObjectsData instanceof \HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti) {
foreach ($associatedObjectsData->getResults() as $association) {
$from = $association->getFrom()->getId();
$toAssociations = $association->getTo();
if (! empty($toAssociations)) {
$associationData[$from] = array_map(function ($item) {
return $item->getId();
}, $toAssociations);
}
}
}
// } catch (RateLimitException $e) {
// throw $e;
} catch (\Exception $e) {
$this->log->error('[Hubspot] Failed to fetch associations', [
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => $e->getMessage(),
]);
}
}
return $associationData;
}
/**
* @throws \Exception
*/
private function getNoteAssociationType(NoteObject $noteObject): string
{
return match($noteObject) {
NoteObject::Opportunity => 'note_to_deal',
NoteObject::Lead, NoteObject::Contact => 'note_to_contact', // or 'note_to_lead' if your portal supports it
NoteObject::Account => 'note_to_company',
NoteObject::Call, NoteObject::Event => throw new \Exception('Not supported'),
};
}
/**
* @throws \Exception
*/
private function getNoteObject(NoteObject $noteObject): string
{
return match($noteObject) {
NoteObject::Opportunity => 'deal',
NoteObject::Lead, NoteObject::Contact => 'contact',
NoteObject::Account => 'company',
NoteObject::Call, NoteObject::Event => throw new \Exception('Not supported'),
};
}
public function addAssociations(string $objectType, string $associationType, array $payload): Response
{
$endpoint = "/crm/v4/associations/$objectType/$associationType/batch/create";
return $this->makeRequest($endpoint, 'POST', $payload);
}
public function removeAssociations(string $objectType, string $associationType, array $payload): Response
{
$endpoint = "/crm/v4/associations/$objectType/$associationType/batch/archive";
return $this->makeRequest($endpoint, 'POST', $payload);
}
}
Show Replace Field
Search History
Received 429 from API
New Line
Match Case...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
20020
|
NULL
|
0
|
2026-05-11T14:18:15.218159+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509095218_m2.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8597075,"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":"ClientTest","depth":6,"bounds":{"left":0.875,"top":0.019952115,"width":0.04055851,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","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 'ClientTest'","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":"Stop 'ClientTest'","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":"More Actions","depth":6,"bounds":{"left":0.9494681,"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":"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":"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":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.37533244,"top":0.22426178,"width":0.00930851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"bounds":{"left":0.38663563,"top":0.22426178,"width":0.011968086,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","depth":4,"bounds":{"left":0.4005984,"top":0.22426178,"width":0.008976064,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.22266561,"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.41855052,"top":0.22266561,"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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"bounds":{"left":0.124667555,"top":0.22106944,"width":0.30086437,"height":0.77893054},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.42985374,"top":0.105347164,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.4424867,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"bounds":{"left":0.45345744,"top":0.10454908,"width":0.043882977,"height":0.015961692},"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.5063165,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.5162899,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.5249335,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.53357714,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/281","depth":4,"bounds":{"left":0.5472075,"top":0.103751,"width":0.025598405,"height":0.017557861},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.5728058,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.58144945,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.5900931,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.5987367,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.7250665,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"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":"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":"AXTextArea","text":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}","depth":4,"on_screen":true,"value":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}","role_description":"text entry area","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,"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}]...
|
-9158251449297157277
|
4446428687123393012
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
20019
|
NULL
|
NULL
|
NULL
|
|
20021
|
860
|
0
|
2026-05-11T14:18:41.856073+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509121856_m1.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"ClientTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Stop 'ClientTest'","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":"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":"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":"AXStaticText","text":"17","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/281","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"on_screen":true,"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":"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":"AXTextArea","text":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}","depth":4,"on_screen":true,"value":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}","role_description":"text entry area","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":"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
20018
|
NULL
|
NULL
|
NULL
|
|
20022
|
861
|
0
|
2026-05-11T14:18:45.753199+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509125753_m2.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8597075,"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":"ClientTest","depth":6,"bounds":{"left":0.875,"top":0.019952115,"width":0.04055851,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","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 'ClientTest'","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":"Stop 'ClientTest'","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":"More Actions","depth":6,"bounds":{"left":0.9494681,"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":"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":"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":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.37533244,"top":0.22426178,"width":0.00930851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"bounds":{"left":0.38663563,"top":0.22426178,"width":0.011968086,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","depth":4,"bounds":{"left":0.4005984,"top":0.22426178,"width":0.008976064,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.22266561,"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.41855052,"top":0.22266561,"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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"bounds":{"left":0.124667555,"top":0.21947326,"width":0.30086437,"height":0.78052676},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.42985374,"top":0.105347164,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.4424867,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"bounds":{"left":0.45345744,"top":0.10454908,"width":0.043882977,"height":0.015961692},"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.5063165,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.5162899,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.5249335,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.53357714,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/281","depth":4,"bounds":{"left":0.5472075,"top":0.103751,"width":0.025598405,"height":0.017557861},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.5728058,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.58144945,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.5900931,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.5987367,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.7250665,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"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":"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":"AXTextArea","text":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}","depth":4,"on_screen":true,"value":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}","role_description":"text entry area","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,"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
20023
|
860
|
1
|
2026-05-11T14:19:12.242554+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509152242_m1.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"ClientTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Stop 'ClientTest'","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":"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":"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":"AXStaticText","text":"17","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/281","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
20024
|
861
|
1
|
2026-05-11T14:19:16.292425+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509156292_m2.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8597075,"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":"ClientTest","depth":6,"bounds":{"left":0.875,"top":0.019952115,"width":0.04055851,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","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 'ClientTest'","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":"Stop 'ClientTest'","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":"More Actions","depth":6,"bounds":{"left":0.9494681,"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":"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":"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":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.37533244,"top":0.22426178,"width":0.00930851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"bounds":{"left":0.38663563,"top":0.22426178,"width":0.011968086,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","depth":4,"bounds":{"left":0.4005984,"top":0.22426178,"width":0.008976064,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.22266561,"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.41855052,"top":0.22266561,"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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"bounds":{"left":0.124667555,"top":0.21947326,"width":0.30086437,"height":0.78052676},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n ['nx', 'ex' => 1]\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.42985374,"top":0.105347164,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.4424867,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"bounds":{"left":0.45345744,"top":0.10454908,"width":0.043882977,"height":0.015961692},"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.5063165,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.5162899,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.5249335,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.53357714,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/281","depth":4,"bounds":{"left":0.5472075,"top":0.103751,"width":0.025598405,"height":0.017557861},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.5728058,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.58144945,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.5900931,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.5987367,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.7250665,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"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":"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":"AXTextArea","text":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}","depth":4,"on_screen":true,"value":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}","role_description":"text entry area","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,"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
20022
|
NULL
|
NULL
|
NULL
|
|
20064
|
863
|
13
|
2026-05-11T14:25:43.725050+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509543725_m2.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8597075,"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":"ClientTest","depth":6,"bounds":{"left":0.875,"top":0.019952115,"width":0.04055851,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","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 'ClientTest'","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":"Stop 'ClientTest'","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":"More Actions","depth":6,"bounds":{"left":0.9494681,"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":"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":"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":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.37533244,"top":0.22426178,"width":0.00930851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"bounds":{"left":0.38663563,"top":0.22426178,"width":0.011968086,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","depth":4,"bounds":{"left":0.4005984,"top":0.22426178,"width":0.008976064,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.22266561,"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.41855052,"top":0.22266561,"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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"bounds":{"left":0.124667555,"top":0.21947326,"width":0.30086437,"height":0.78052676},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.42985374,"top":0.105347164,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.4424867,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"bounds":{"left":0.45345744,"top":0.10454908,"width":0.043882977,"height":0.015961692},"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.5063165,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.5162899,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.5249335,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.53357714,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-9158251449297157277
|
4446428687123393012
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
20065
|
862
|
7
|
2026-05-11T14:26:10.324387+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509570324_m1.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"ClientTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Stop 'ClientTest'","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":"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":"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":"AXStaticText","text":"17","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/287","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"on_screen":true,"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":"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
20062
|
NULL
|
NULL
|
NULL
|
|
20066
|
863
|
14
|
2026-05-11T14:26:14.224017+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509574224_m2.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8597075,"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":"ClientTest","depth":6,"bounds":{"left":0.875,"top":0.019952115,"width":0.04055851,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","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 'ClientTest'","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":"Stop 'ClientTest'","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":"More Actions","depth":6,"bounds":{"left":0.9494681,"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":"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":"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":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.37533244,"top":0.22426178,"width":0.00930851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"bounds":{"left":0.38663563,"top":0.22426178,"width":0.011968086,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","depth":4,"bounds":{"left":0.4005984,"top":0.22426178,"width":0.008976064,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.22266561,"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.41855052,"top":0.22266561,"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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"bounds":{"left":0.124667555,"top":0.21947326,"width":0.30086437,"height":0.78052676},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.42985374,"top":0.105347164,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.4424867,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"bounds":{"left":0.45345744,"top":0.10454908,"width":0.043882977,"height":0.015961692},"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.5063165,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.5162899,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.5249335,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.53357714,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/287","depth":4,"bounds":{"left":0.5472075,"top":0.103751,"width":0.025598405,"height":0.017557861},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.5728058,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.58144945,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.5900931,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.5987367,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.7250665,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"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":"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":"AXTextArea","text":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:18:53.903625Z\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812776,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812777,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812778,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812779,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812780,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812781,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812776,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812777,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812778,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812779,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812780,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Start {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:59:00\",\"to\":\"2026-05-11 14:15:00\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] End {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Memory usage {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":29183792,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] 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\":280.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring start {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring end {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring start {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring end {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:16\",\"to\":\"14:21\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:11\",\"to\":\"04:16\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:20] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:23:32.378841Z\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] 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\":223.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring start {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring end {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:08] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"902d78a8-be4c-4e27-9862-a462476468fd\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Done {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:34] local.NOTICE: Monitoring start {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:35] local.NOTICE: Monitoring end {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:25:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25: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\":\"c1ce205b-4ca9-46b0-8b6c-645849bb5ab7\",\"trace_id\":\"22ea08de-2b15-494c-accf-4bab1836b0ac\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"eb943195-2039-477b-833d-e32b19045440\",\"trace_id\":\"47cb265a-7c67-4c89-9cc2-83fee82c2678\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"b9ed3e6a-f2dd-4fbb-94f2-dffa408951e3\",\"trace_id\":\"3e30b53b-0c97-4bc2-a626-85e7911c743f\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}","depth":4,"on_screen":true,"value":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:18:53.903625Z\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812776,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812777,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812778,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812779,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812780,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812781,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812776,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812777,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812778,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812779,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812780,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Start {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:59:00\",\"to\":\"2026-05-11 14:15:00\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] End {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Memory usage {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":29183792,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] 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\":280.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring start {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring end {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring start {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring end {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:16\",\"to\":\"14:21\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:11\",\"to\":\"04:16\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:20] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:23:32.378841Z\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] 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\":223.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring start {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring end {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:08] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"902d78a8-be4c-4e27-9862-a462476468fd\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Done {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:34] local.NOTICE: Monitoring start {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:35] local.NOTICE: Monitoring end {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:25:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25: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\":\"c1ce205b-4ca9-46b0-8b6c-645849bb5ab7\",\"trace_id\":\"22ea08de-2b15-494c-accf-4bab1836b0ac\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"eb943195-2039-477b-833d-e32b19045440\",\"trace_id\":\"47cb265a-7c67-4c89-9cc2-83fee82c2678\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"b9ed3e6a-f2dd-4fbb-94f2-dffa408951e3\",\"trace_id\":\"3e30b53b-0c97-4bc2-a626-85e7911c743f\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}","role_description":"text entry area","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,"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
20064
|
NULL
|
NULL
|
NULL
|
|
20067
|
862
|
8
|
2026-05-11T14:26:40.716773+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509600716_m1.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"ClientTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Stop 'ClientTest'","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":"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":"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":"AXStaticText","text":"17","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/287","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"on_screen":true,"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":"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
20068
|
863
|
15
|
2026-05-11T14:26:44.865880+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509604865_m2.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8597075,"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":"ClientTest","depth":6,"bounds":{"left":0.875,"top":0.019952115,"width":0.04055851,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","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 'ClientTest'","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":"Stop 'ClientTest'","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":"More Actions","depth":6,"bounds":{"left":0.9494681,"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":"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":"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":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.37533244,"top":0.22426178,"width":0.00930851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"bounds":{"left":0.38663563,"top":0.22426178,"width":0.011968086,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","depth":4,"bounds":{"left":0.4005984,"top":0.22426178,"width":0.008976064,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.22266561,"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.41855052,"top":0.22266561,"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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"bounds":{"left":0.124667555,"top":0.21947326,"width":0.30086437,"height":0.78052676},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.42985374,"top":0.105347164,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.4424867,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"bounds":{"left":0.45345744,"top":0.10454908,"width":0.043882977,"height":0.015961692},"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.5063165,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.5162899,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.5249335,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.53357714,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/287","depth":4,"bounds":{"left":0.5472075,"top":0.103751,"width":0.025598405,"height":0.017557861},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.5728058,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.58144945,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.5900931,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.5987367,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.7250665,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
20064
|
NULL
|
NULL
|
NULL
|
|
20069
|
862
|
9
|
2026-05-11T14:27:11.109704+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509631109_m1.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"ClientTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'ClientTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Stop 'ClientTest'","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":"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":"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":"AXStaticText","text":"17","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/287","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"on_screen":true,"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":"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":"AXTextArea","text":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:18:53.903625Z\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812776,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812777,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812778,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812779,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812780,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812781,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812776,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812777,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812778,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812779,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812780,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Start {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:59:00\",\"to\":\"2026-05-11 14:15:00\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] End {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Memory usage {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":29183792,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] 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\":280.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring start {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring end {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring start {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring end {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:16\",\"to\":\"14:21\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:11\",\"to\":\"04:16\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:20] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:23:32.378841Z\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] 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\":223.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring start {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring end {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:08] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"902d78a8-be4c-4e27-9862-a462476468fd\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Done {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:34] local.NOTICE: Monitoring start {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:35] local.NOTICE: Monitoring end {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:25:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25: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\":\"c1ce205b-4ca9-46b0-8b6c-645849bb5ab7\",\"trace_id\":\"22ea08de-2b15-494c-accf-4bab1836b0ac\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"eb943195-2039-477b-833d-e32b19045440\",\"trace_id\":\"47cb265a-7c67-4c89-9cc2-83fee82c2678\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"b9ed3e6a-f2dd-4fbb-94f2-dffa408951e3\",\"trace_id\":\"3e30b53b-0c97-4bc2-a626-85e7911c743f\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}","depth":4,"on_screen":true,"value":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:18:53.903625Z\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812776,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812777,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812778,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812779,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812780,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812781,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812776,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812777,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812778,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812779,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812780,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Start {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:59:00\",\"to\":\"2026-05-11 14:15:00\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] End {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Memory usage {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":29183792,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] 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\":280.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring start {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring end {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring start {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring end {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:16\",\"to\":\"14:21\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:11\",\"to\":\"04:16\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:20] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:23:32.378841Z\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] 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\":223.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring start {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring end {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:08] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"902d78a8-be4c-4e27-9862-a462476468fd\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Done {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:34] local.NOTICE: Monitoring start {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:35] local.NOTICE: Monitoring end {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:25:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25: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\":\"c1ce205b-4ca9-46b0-8b6c-645849bb5ab7\",\"trace_id\":\"22ea08de-2b15-494c-accf-4bab1836b0ac\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"eb943195-2039-477b-833d-e32b19045440\",\"trace_id\":\"47cb265a-7c67-4c89-9cc2-83fee82c2678\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"b9ed3e6a-f2dd-4fbb-94f2-dffa408951e3\",\"trace_id\":\"3e30b53b-0c97-4bc2-a626-85e7911c743f\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}","role_description":"text entry area","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":"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
20067
|
NULL
|
NULL
|
NULL
|
|
20070
|
863
|
16
|
2026-05-11T14:27:15.347316+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778509635347_m2.jpg...
|
PhpStorm
|
faVsco.js – ClientTest.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8597075,"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":"ClientTest","depth":6,"bounds":{"left":0.875,"top":0.019952115,"width":0.04055851,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Rerun 'PHPUnit: ClientTest'","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 'ClientTest'","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":"Stop 'ClientTest'","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":"More Actions","depth":6,"bounds":{"left":0.9494681,"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":"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":"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":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.37533244,"top":0.22426178,"width":0.00930851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"136","depth":4,"bounds":{"left":0.38663563,"top":0.22426178,"width":0.011968086,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11","depth":4,"bounds":{"left":0.4005984,"top":0.22426178,"width":0.008976064,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.22266561,"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.41855052,"top":0.22266561,"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 Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","depth":4,"bounds":{"left":0.124667555,"top":0.21947326,"width":0.30086437,"height":0.78052676},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Tests\\Unit\\Services\\Crm\\Hubspot;\n\nuse GuzzleHttp\\Psr7\\Response;\nuse HubSpot\\Client\\Crm\\Associations\\Api\\BatchApi;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\BatchResponsePublicAssociationMulti;\nuse HubSpot\\Client\\Crm\\Associations\\Model\\PublicObjectId;\nuse HubSpot\\Client\\Crm\\Companies\\ApiException as CompanyApiException;\nuse HubSpot\\Client\\Crm\\Contacts\\ApiException as ContactApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi as DealsBasicApi;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException as DealApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations as DealWithAssociations;\nuse HubSpot\\Client\\Crm\\Pipelines\\Api\\PipelinesApi;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\CollectionResponsePipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Error;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\Pipeline;\nuse HubSpot\\Client\\Crm\\Pipelines\\Model\\PipelineStage;\nuse HubSpot\\Client\\Crm\\Properties\\Api\\CoreApi;\nuse HubSpot\\Client\\Crm\\Properties\\Model\\Property;\nuse HubSpot\\Discovery as HubSpotDiscovery;\nuse HubSpot\\Discovery\\Crm\\Deals\\Discovery as DealsDiscovery;\nuse Jiminny\\Exceptions\\RateLimitException;\nuse Jiminny\\Models\\Crm\\Configuration;\nuse Jiminny\\Models\\Crm\\Field;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Services\\Crm\\Hubspot\\Client;\nuse Jiminny\\Services\\Crm\\Hubspot\\HubspotTokenManager;\nuse Jiminny\\Services\\Crm\\Hubspot\\Pagination\\HubspotPaginationService;\nuse Jiminny\\Services\\SocialAccountService;\nuse League\\OAuth2\\Client\\Token\\AccessToken;\nuse Mockery;\nuse PHPUnit\\Framework\\MockObject\\MockObject;\nuse PHPUnit\\Framework\\TestCase;\nuse Psr\\Log\\NullLogger;\nuse SevenShores\\Hubspot\\Endpoints\\Engagements;\nuse SevenShores\\Hubspot\\Exceptions\\BadRequest;\nuse SevenShores\\Hubspot\\Factory;\nuse SevenShores\\Hubspot\\Http\\Client as HubspotClient;\nuse SevenShores\\Hubspot\\Http\\Response as HubspotResponse;\n\n/**\n * @runTestsInSeparateProcesses\n *\n * @preserveGlobalState disabled\n */\nclass ClientTest extends TestCase\n{\n private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';\n private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';\n private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';\n /**\n * @var Client&MockObject\n */\n private Client $client;\n private Configuration $config;\n\n /**\n * @var SocialAccountService&MockObject\n */\n private SocialAccountService $socialAccountServiceMock;\n\n /**\n * @var HubspotPaginationService&MockObject\n */\n private HubspotPaginationService $paginationServiceMock;\n\n /**\n * @var HubspotTokenManager&MockObject\n */\n private HubspotTokenManager $tokenManagerMock;\n\n /**\n * @var CoreApi&MockObject\n */\n private CoreApi $coreApiMock;\n\n /**\n * @var PipelinesApi&MockObject\n */\n private PipelinesApi $pipelinesApiMock;\n\n /**\n * @var BatchApi&MockObject\n */\n private BatchApi $associationsBatchApiMock;\n\n /**\n * @var DealsBasicApi&MockObject\n */\n private DealsBasicApi $dealsBasicApiMock;\n\n /**\n * @var Engagements&MockObject\n */\n private $engagementsMock;\n\n /**\n * @var HubspotClient&MockObject\n */\n private HubspotClient $hubspotClientMock;\n\n protected function setUp(): void\n {\n // Create mocks for dependencies\n $this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);\n $this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);\n $this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);\n\n // Create a real Client instance with mocked dependencies\n // Create a partial mock only for the methods we need to mock\n $client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);\n $client->setLogger(new NullLogger());\n\n // Inject the real dependencies using reflection\n $reflection = new \\ReflectionClass(Client::class);\n\n $accountServiceProperty = $reflection->getProperty('accountService');\n $accountServiceProperty->setAccessible(true);\n $accountServiceProperty->setValue($client, $this->socialAccountServiceMock);\n\n $paginationServiceProperty = $reflection->getProperty('paginationService');\n $paginationServiceProperty->setAccessible(true);\n $paginationServiceProperty->setValue($client, $this->paginationServiceMock);\n\n $tokenManagerProperty = $reflection->getProperty('tokenManager');\n $tokenManagerProperty->setAccessible(true);\n $tokenManagerProperty->setValue($client, $this->tokenManagerMock);\n $factoryMock = $this->createMock(Factory::class);\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $engagementsMock = $this->createMock(\\SevenShores\\Hubspot\\Endpoints\\Engagements::class);\n\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n $factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);\n\n $client->method('getInstance')->willReturn($factoryMock);\n\n $discoveryMock = $this->createMock(HubSpotDiscovery\\Discovery::class);\n $crmMock = $this->createMock(HubSpotDiscovery\\Crm\\Discovery::class);\n $associationsMock = $this->createMock(HubSpotDiscovery\\Crm\\Associations\\Discovery::class);\n $propertiesMock = $this->createMock(HubSpotDiscovery\\Crm\\Properties\\Discovery::class);\n $pipelinesMock = $this->createMock(HubSpotDiscovery\\Crm\\Pipelines\\Discovery::class);\n $coreApiMock = $this->createMock(CoreApi::class);\n $pipelinesApiMock = $this->createMock(PipelinesApi::class);\n $associationsBatchApiMock = $this->createMock(BatchApi::class);\n $dealsBasicApiMock = $this->createMock(DealsBasicApi::class);\n\n $propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);\n $pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);\n $associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);\n $dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);\n $dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);\n\n $returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];\n $crmMock->method('__call')\n ->willReturnCallback(static fn (string $name) => $returnMap[$name])\n ;\n\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n\n $this->client = $client;\n $this->config = $this->createMock(Configuration::class);\n $this->client->setConfiguration($this->config);\n $this->coreApiMock = $coreApiMock;\n $this->pipelinesApiMock = $pipelinesApiMock;\n $this->associationsBatchApiMock = $associationsBatchApiMock;\n $this->dealsBasicApiMock = $dealsBasicApiMock;\n $this->engagementsMock = $engagementsMock;\n $this->hubspotClientMock = $hubspotClientMock;\n }\n\n public function testGetMinimumApiVersion(): void\n {\n $this->assertIsString($this->client->getMinimumApiVersion());\n }\n\n public function testGetInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setBaseUrl('https://example.com');\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n $factory = $client->getInstance();\n\n $this->assertEquals('foo', $factory->getClient()->key);\n }\n\n public function testGetNewInstance(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $client = new Client($socialAccountService, $paginationService, $tokenManager);\n $client->setAccessToken(new AccessToken(['access_token' => 'foo']));\n\n $factory = $client->getNewInstance();\n $token = $factory->auth()->oAuth()->accessTokensApi()->getConfig()->getAccessToken();\n $this->assertEquals('foo', $token);\n }\n\n public function testFetchProperty(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n 'some_property',\n $this->client->fetchProperty('foo', 'test')['name']\n );\n }\n\n public function testFetchPropertyOptions(): void\n {\n $this->coreApiMock->method('getByName')->willReturn($this->generateProperty());\n\n $this->assertEquals(\n [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n $this->client->fetchPropertyOptions('foo', 'test')\n );\n }\n\n public function testFetchCallDispositions(): void\n {\n $this->engagementsMock\n ->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse([\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ]))\n ;\n\n $this->assertEquals(\n [\n [\n 'id' => 1,\n 'label' => 'foo',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'bar',\n 'deleted' => false,\n ],\n ],\n $this->client->fetchCallDispositions()\n );\n }\n\n public function testFetchDispositionFieldOptions(): void\n {\n $this->engagementsMock->method('getCallDispositions')\n ->willReturn($this->generateHubSpotResponse(\n [\n [\n 'id' => 1,\n 'label' => 'Label 1',\n 'deleted' => false,\n ],\n [\n 'id' => 2,\n 'label' => 'Label 2',\n 'deleted' => true,\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n [\n 'value' => 1,\n 'id' => 1,\n 'label' => 'Label 1',\n ],\n ],\n $this->client->fetchDispositionFieldOptions()\n );\n }\n\n public function testFetchOpportunityPipelineStages(): void\n {\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n $this->client->fetchOpportunityPipelineStages()\n );\n }\n\n public function testFetchOpportunityPipelineStagesErrorResponse(): void\n {\n $this->pipelinesApiMock\n ->method('getAll')\n ->with('deals')\n ->willReturn(new Error(['message' => 'test error']))\n ;\n\n $this->assertEmpty($this->client->fetchOpportunityPipelineStages());\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('meetingOutcomeFieldProvider')]\n public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void\n {\n $field = new Field(['crm_provider_id' => $fieldId]);\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('GET', $expectedEndpoint)\n ->willReturn($this->generateHubSpotResponse(\n [\n 'options' => [\n ['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]\n ))\n ;\n\n $this->assertEquals(\n [\n ['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],\n ['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],\n ['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],\n ],\n $this->client->fetchMeetingOutcomeFieldOptions($field)\n );\n }\n\n public static function meetingOutcomeFieldProvider(): array\n {\n return [\n 'meeting outcome field' => [\n 'meetingOutcome',\n 'https://api.hubapi.com/crm/v3/properties/meeting/hs_meeting_outcome',\n ],\n 'activity type field' => [\n 'foobar',\n 'https://api.hubapi.com/crm/v3/properties/call/hs_activity_type',\n ],\n ];\n }\n\n #[\\PHPUnit\\Framework\\Attributes\\DataProvider('opportunityFieldOptionsProvider')]\n public function testFetchOpportunityFieldOptions(Field $field, string $type): void\n {\n $responses = [\n self::RESPONSE_TYPE_STAGE_FIELD => [\n ['id' => 'foo', 'label' => 'bar'],\n ['id' => 'baz', 'label' => 'qux'],\n ],\n self::RESPONSE_TYPE_PIPELINE_FIELD => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n self::RESPONSE_TYPE_REGULAR_FIELD => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ];\n\n $field = $this->createMock(Field::class);\n\n if ($type === self::RESPONSE_TYPE_REGULAR_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(false);\n $propertyResponse = $this->generateProperty();\n $this->coreApiMock->method('getByName')->willReturn($propertyResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_STAGE_FIELD) {\n $field->method('isStageField')->willReturn(true);\n /**\n * @TODO: The class CollectionResponsePipeline will be deprecated in the next Hubspot version\n */\n\n $pipelineStagesResponse = new CollectionResponsePipeline([\n 'results' => [$this->generatePipeline()],\n ]);\n $this->pipelinesApiMock\n ->method('getAll')\n ->willReturn($pipelineStagesResponse);\n }\n\n if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {\n $field->method('isStageField')->willReturn(false);\n $field->method('isPipelineField')->willReturn(true);\n $pipelineResponse = $this->generateHubSpotResponse([\n 'results' => [\n ['id' => '123', 'label' => 'Sales'],\n ['id' => 'default', 'label' => 'CS'],\n ],\n ]);\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($pipelineResponse);\n }\n\n $this->assertEquals(\n $responses[$type],\n $this->client->fetchOpportunityFieldOptions($field)\n );\n }\n\n public static function opportunityFieldOptionsProvider(): array\n {\n return [\n 'stage field' => [\n 'field' => new Field(['crm_provider_id' => 'dealstage']),\n 'type' => self::RESPONSE_TYPE_STAGE_FIELD,\n ],\n 'pipeline field' => [\n 'field' => new Field(['crm_provider_id' => 'pipeline']),\n 'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,\n ],\n 'regular field' => [\n 'field' => new Field(['crm_provider_id' => 'some_property']),\n 'type' => self::RESPONSE_TYPE_REGULAR_FIELD,\n ],\n ];\n }\n\n private function generateHubSpotResponse(array $data): HubspotResponse\n {\n return new HubspotResponse(new Response(200, [], json_encode($data)));\n }\n\n private function generateProperty(): Property\n {\n return new Property([\n 'name' => 'some_property',\n 'options' => [\n [\n 'label' => 'label_1',\n 'value' => 'value_1',\n ],\n [\n 'label' => 'label_2',\n 'value' => 'value_2',\n ],\n ],\n ]);\n }\n\n private function generatePipeline(): Pipeline\n {\n return new Pipeline(['stages' => [\n new PipelineStage(['id' => 'foo', 'label' => 'bar']),\n new PipelineStage(['id' => 'baz', 'label' => 'qux']),\n ]]);\n }\n\n public function testFetchOpportunityPipelines(): void\n {\n $this->client\n ->method('makeRequest')\n ->with('/crm/v3/pipelines/deals')\n ->willReturn($this->generateHubSpotResponse([\n 'results' => [\n ['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],\n ['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],\n ['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],\n ],\n ]));\n\n $this->assertEquals(\n [\n ['id' => 'id_1', 'label' => 'Option 1'],\n ['id' => 'id_2', 'label' => 'Option 2'],\n ['id' => 'id_3', 'label' => 'Option 3'],\n ],\n $this->client->fetchOpportunityPipelines()\n );\n }\n\n public function testGetPaginatedData(): void\n {\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ['id' => 'id_3', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator and modify reference parameters\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n ['payload_key' => 'payload_value'],\n 'foobar',\n 0,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {\n $total = 3;\n $lastRecordId = 'id_3';\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n $this->assertEquals(\n [\n 'results' => $expectedResults,\n 'total' => 3,\n 'last_record' => 'id_3',\n ],\n $this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')\n );\n }\n\n public function testGetAssociationsData(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $responseResults = [];\n foreach ($ids as $id) {\n $from = new PublicObjectId();\n $from->setId($id);\n\n $to1 = new PublicObjectId();\n $to1->setId('contact_' . $id . '_1');\n $to2 = new PublicObjectId();\n $to2->setId('contact_' . $id . '_2');\n\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to1, $to2]);\n\n $responseResults[] = $result;\n }\n\n $batchResponse = new BatchResponsePublicAssociationMulti();\n $batchResponse->setResults($responseResults);\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {\n $inputIds = array_map(\n fn ($input) => $input->getId(),\n $batchInput->getInputs()\n );\n\n return $inputIds === $ids;\n })\n )\n ->willReturn($batchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $expectedResult = [\n '1' => ['contact_1_1', 'contact_1_2'],\n '2' => ['contact_2_1', 'contact_2_2'],\n '3' => ['contact_3_1', 'contact_3_2'],\n ];\n\n $this->assertEquals($expectedResult, $result);\n }\n\n public function testGetAssociationsDataHandlesException(): void\n {\n $ids = ['1', '2', '3'];\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $exception = new \\Exception('API Error');\n\n $this->associationsBatchApiMock->expects($this->once())\n ->method('read')\n ->with(\n $this->equalTo($fromObject),\n $this->equalTo($toObject),\n $this->callback(function ($batchInput) use ($ids) {\n return $batchInput instanceof \\HubSpot\\Client\\Crm\\Associations\\Model\\BatchInputPublicObjectId\n && count($batchInput->getInputs()) === count($ids);\n })\n )\n ->willThrowException($exception);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[Hubspot] Failed to fetch associations',\n [\n 'from_object' => $fromObject,\n 'to_object' => $toObject,\n 'reason' => 'API Error',\n ]\n );\n\n $this->client->setLogger($loggerMock);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertEmpty($result);\n $this->assertIsArray($result);\n }\n\n public function testGetAssociationsDataWithLargeDataSet(): void\n {\n $ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items\n $fromObject = 'deals';\n $toObject = 'contacts';\n\n $firstBatchResponse = new BatchResponsePublicAssociationMulti();\n $firstBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $firstBatchResponse->setResults($firstBatchResults);\n\n $secondBatchResponse = new BatchResponsePublicAssociationMulti();\n $secondBatchResults = array_map(function ($id) {\n $from = new PublicObjectId();\n $from->setId($id);\n $to = new PublicObjectId();\n $to->setId('contact_' . $id);\n $result = new \\HubSpot\\Client\\Crm\\Associations\\Model\\PublicAssociationMulti();\n $result->setFrom($from);\n $result->setTo([$to]);\n\n return $result;\n }, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));\n $secondBatchResponse->setResults($secondBatchResults);\n\n $this->associationsBatchApiMock->expects($this->exactly(3))\n ->method('read')\n ->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);\n\n $result = $this->client->getAssociationsData($ids, $fromObject, $toObject);\n\n $this->assertCount(2500, $result);\n $this->assertArrayHasKey('1', $result);\n $this->assertArrayHasKey('2500', $result);\n $this->assertEquals(['contact_1'], $result['1']);\n $this->assertEquals(['contact_2500'], $result['2500']);\n }\n\n public function testGetContactByEmailSuccess(): void\n {\n $email = 'test@example.com';\n $fields = ['firstname', 'lastname', 'email'];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn([\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ]);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname,email', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => 'test@example.com',\n ],\n ], $result);\n }\n\n public function testGetContactByEmailWithEmptyFields(): void\n {\n $email = 'test@example.com';\n $fields = [];\n\n $contactMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $contactMock->method('getId')->willReturn('12345');\n $contactMock->method('getProperties')->willReturn(['email' => 'test@example.com']);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, '', null, false, 'email')\n ->willReturn($contactMock);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new NullLogger());\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([\n 'id' => '12345',\n 'properties' => ['email' => 'test@example.com'],\n ], $result);\n }\n\n public function testGetContactByEmailApiException(): void\n {\n $email = 'nonexistent@example.com';\n $fields = ['firstname', 'lastname'];\n\n $exception = new \\HubSpot\\Client\\Crm\\Contacts\\ApiException('Contact not found', 404);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($email, 'firstname,lastname', null, false, 'email')\n ->willThrowException($exception);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('info')\n ->with(\n '[Hubspot] Failed to fetch contact',\n [\n 'email' => $email,\n 'reason' => 'Contact not found',\n ]\n );\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger($loggerMock);\n\n $result = $client->getContactByEmail($email, $fields);\n\n $this->assertEquals([], $result);\n }\n\n public function testGetOpportunityById(): void\n {\n $opportunityId = '12345';\n $expectedProperties = [\n 'dealname' => 'Test Opportunity',\n 'amount' => '1000.00',\n 'closedate' => '2024-12-31T23:59:59.999Z',\n 'dealstage' => 'presentationscheduled',\n 'pipeline' => 'default',\n ];\n\n $mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);\n $mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);\n $mockHubspotOpportunity->method('getId')->willReturn($opportunityId);\n $now = new \\DateTimeImmutable();\n $mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);\n $mockHubspotOpportunity->method('getArchived')->willReturn(false);\n\n $this->dealsBasicApiMock\n ->expects($this->once())\n ->method('getById')\n ->willReturn($mockHubspotOpportunity);\n\n // Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.\n // The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]\n // Adjust assertions below based on the actual return structure of your method.\n $result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertEquals($opportunityId, $result['id']);\n }\n\n public function testGetContactById(): void\n {\n $crmId = 'contact-123';\n $fields = ['firstname', 'lastname'];\n $expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];\n\n $mockContact = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Model\\SimplePublicObjectWithAssociations::class);\n $mockContact->method('getId')->willReturn($crmId);\n $mockContact->method('getProperties')->willReturn((object) $expectedProperties);\n\n $contactsApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Contacts\\Api\\BasicApi::class);\n $contactsApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'firstname,lastname')\n ->willReturn($mockContact);\n\n $contactsDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Contacts\\Discovery::class);\n $contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {\n if ($name === 'contacts') {\n return $contactsDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getContactById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testGetAccountById(): void\n {\n $crmId = 'account-123';\n $fields = ['name', 'industry'];\n $expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];\n\n $mockCompany = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Model\\SimplePublicObjectWithAssociations::class);\n $mockCompany->method('getId')->willReturn($crmId);\n $mockCompany->method('getProperties')->willReturn((object) $expectedProperties);\n\n $companiesApiMock = $this->createMock(\\HubSpot\\Client\\Crm\\Companies\\Api\\BasicApi::class);\n $companiesApiMock->expects($this->once())\n ->method('getById')\n ->with($crmId, 'name,industry')\n ->willReturn($mockCompany);\n\n $companiesDiscoveryMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Companies\\Discovery::class);\n $companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);\n\n $crmMock = $this->createMock(\\HubSpot\\Discovery\\Crm\\Discovery::class);\n $crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {\n if ($name === 'companies') {\n return $companiesDiscoveryMock;\n }\n\n return $this->createMock(\\HubSpot\\Discovery\\Crm\\Properties\\Discovery::class);\n });\n\n $discoveryMock = $this->createMock(\\HubSpot\\Discovery\\Discovery::class);\n $discoveryMock->method('__call')->with('crm')->willReturn($crmMock);\n\n $client = $this->createPartialMock(Client::class, ['getNewInstance']);\n $client->method('getNewInstance')->willReturn($discoveryMock);\n $client->setLogger(new \\Psr\\Log\\NullLogger());\n\n $result = $client->getAccountById($crmId, $fields);\n\n $this->assertIsArray($result);\n $this->assertArrayHasKey('id', $result);\n $this->assertArrayHasKey('properties', $result);\n $this->assertEquals($crmId, $result['id']);\n $this->assertEquals((object) $expectedProperties, $result['properties']);\n }\n\n public function testEnsureValidTokenWithNoTokenUpdate(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n $originalToken = 'original_token';\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $accessTokenProperty->setValue($this->client, $originalToken);\n\n // Mock token manager to return null (no refresh needed)\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn(null);\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was not changed\n $this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));\n }\n\n\n\n\n\n\n public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void\n {\n $payload = ['filters' => []];\n $type = 'contacts';\n $offset = 0;\n $total = 0;\n $lastRecordId = null;\n\n $expectedResults = [\n ['id' => 'id_1', 'properties' => []],\n ['id' => 'id_2', 'properties' => []],\n ];\n\n // Mock the pagination service to return a generator\n $this->paginationServiceMock\n ->expects($this->once())\n ->method('getPaginatedDataGenerator')\n ->with(\n $this->client,\n $payload,\n $type,\n $offset,\n $this->anything(),\n $this->anything()\n )\n ->willReturnCallback(function () use ($expectedResults) {\n foreach ($expectedResults as $result) {\n yield $result;\n }\n });\n\n // Execute the pagination\n $results = [];\n foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {\n $results[] = $result;\n }\n\n $this->assertCount(2, $results);\n $this->assertEquals('id_1', $results[0]['id']);\n $this->assertEquals('id_2', $results[1]['id']);\n }\n\n public function testEnsureValidTokenDelegatesToTokenManager(): void\n {\n $socialAccountMock = $this->createMock(SocialAccount::class);\n\n // Set up OAuth account\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, $socialAccountMock);\n\n // Mock token manager to return new token\n $this->tokenManagerMock\n ->expects($this->once())\n ->method('ensureValidToken')\n ->with($socialAccountMock)\n ->willReturn('new_access_token');\n\n // Call ensureValidToken\n $this->client->ensureValidToken();\n\n // Verify access token was updated\n $accessTokenProperty = $reflection->getProperty('accessToken');\n $accessTokenProperty->setAccessible(true);\n $this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));\n }\n\n public function testGetOwnersArchivedWithValidResponse(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'owner1@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => true,\n ],\n ],\n ];\n\n // Create a mock response object\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n // Set up the client to return our test data\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=true'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(true);\n\n // Assert the results\n $this->assertCount(1, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('owner1@example.com', $result[0]->getEmail());\n $this->assertEquals('John Doe', $result[0]->getFullName());\n $this->assertTrue($result[0]->isArchived());\n }\n\n public function testGetOwnersArchivedWithEmptyResponse(): void\n {\n // Create a mock response object with empty results\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn(['results' => []]);\n\n // Set up the client to return empty results\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n // Call the method\n $result = $this->client->getOwnersArchived(false);\n\n // Assert the results\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithInvalidResponse(): void\n {\n // Create a mock response that will throw an exception when toArray is called\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willThrowException(new \\InvalidArgumentException('Invalid JSON'));\n\n // Set up the client to return the problematic response\n $this->client->method('makeRequest')\n ->willReturn($response);\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(true);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithHttpError(): void\n {\n // Set up the client to throw an exception\n $this->client->method('makeRequest')\n ->willThrowException(new \\Exception('HTTP Error'));\n\n // Mock the logger to expect an error message\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with($this->stringContains('Failed to fetch owners'));\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n // Call the method and expect an empty array on error\n $result = $this->client->getOwnersArchived(false);\n $this->assertIsArray($result);\n $this->assertEmpty($result);\n }\n\n public function testGetOwnersArchivedWithOwnerCreationException(): void\n {\n $responseData = [\n 'results' => [\n [\n 'id' => '123',\n 'email' => 'valid@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'userId' => 456,\n 'userIdIncludingInactive' => 789,\n 'createdAt' => '2023-01-01T12:00:00Z',\n 'updatedAt' => '2023-01-02T12:00:00Z',\n 'archived' => false,\n ],\n [\n 'id' => '456',\n 'email' => 'invalid@example.com',\n 'type' => 'PERSON',\n 'createdAt' => 'invalid-date-format',\n ],\n [\n 'id' => '789',\n 'email' => 'another@example.com',\n 'type' => 'PERSON',\n 'firstName' => 'Jane',\n 'lastName' => 'Smith',\n 'userId' => 999,\n 'userIdIncludingInactive' => 888,\n 'createdAt' => '2023-01-03T12:00:00Z',\n 'updatedAt' => '2023-01-04T12:00:00Z',\n 'archived' => false,\n ],\n ],\n ];\n\n $response = $this->createMock(\\SevenShores\\Hubspot\\Http\\Response::class);\n $response->method('toArray')\n ->willReturn($responseData);\n\n $this->client->method('makeRequest')\n ->with(\n '/crm/v3/owners',\n 'GET',\n [],\n 'archived=false'\n )\n ->willReturn($response);\n\n $loggerMock = $this->createMock(\\Psr\\Log\\LoggerInterface::class);\n $loggerMock->expects($this->once())\n ->method('error')\n ->with(\n '[HubSpot] Failed to process owner data',\n $this->callback(function ($context) {\n return isset($context['result']) &&\n isset($context['error']) &&\n $context['result']['id'] === '456' &&\n $context['result']['email'] === 'invalid@example.com' &&\n str_contains($context['error'], 'invalid-date-format');\n })\n );\n\n $reflection = new \\ReflectionClass($this->client);\n $loggerProperty = $reflection->getProperty('log');\n $loggerProperty->setAccessible(true);\n $loggerProperty->setValue($this->client, $loggerMock);\n\n $result = $this->client->getOwnersArchived(false);\n\n $this->assertIsArray($result);\n $this->assertCount(2, $result);\n $this->assertEquals('123', $result[0]->getId());\n $this->assertEquals('valid@example.com', $result[0]->getEmail());\n $this->assertEquals('789', $result[1]->getId());\n $this->assertEquals('another@example.com', $result[1]->getEmail());\n }\n\n public function testMakeRequestWithGetMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n null,\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithGetMethodAndQueryString(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'GET',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n [],\n 'limit=10&offset=0',\n true\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'GET', [], 'limit=10&offset=0');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPostMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPutMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'firstname' => 'Jane',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'updated' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PUT',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PUT', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithPatchMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $payload = [\n 'properties' => [\n 'email' => 'newemail@example.com',\n ],\n ];\n\n $psrResponse = new Response(200, [], json_encode(['id' => '12345', 'patched' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'PATCH',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => $payload]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'PATCH', $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithDeleteMethod(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['deleted' => true]));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'DELETE',\n 'https://api.hubapi.com/crm/v3/objects/contacts/12345',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts/12345', 'DELETE');\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestWithEmptyPayload(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'ok']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n 'POST',\n 'https://api.hubapi.com/crm/v3/objects/contacts',\n ['json' => []]\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $result = $client->makeRequest('/crm/v3/objects/contacts', 'POST', []);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testMakeRequestPrependsBaseUrl(): void\n {\n $socialAccountService = $this->createMock(SocialAccountService::class);\n $paginationService = $this->createMock(HubspotPaginationService::class);\n $tokenManager = $this->createMock(HubspotTokenManager::class);\n\n $psrResponse = new Response(200, [], json_encode(['status' => 'success']));\n $expectedResponse = new HubspotResponse($psrResponse);\n\n $hubspotClientMock = $this->createMock(HubspotClient::class);\n $hubspotClientMock->expects($this->once())\n ->method('request')\n ->with(\n $this->anything(),\n 'https://api.hubapi.com/test/endpoint',\n $this->anything()\n )\n ->willReturn($expectedResponse);\n\n $factoryMock = $this->createMock(Factory::class);\n $factoryMock->method('getClient')->willReturn($hubspotClientMock);\n\n $client = $this->getMockBuilder(Client::class)\n ->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])\n ->onlyMethods(['getInstance'])\n ->getMock();\n\n $client->method('getInstance')->willReturn($factoryMock);\n $client->setAccessToken(new AccessToken(['access_token' => 'test_token']));\n\n $client->makeRequest('/test/endpoint', 'GET');\n }\n\n public function testGetOpportunitiesByIds(): void\n {\n $crmIds = ['deal1', 'deal2', 'deal3'];\n $fields = ['dealname', 'amount'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getOpportunitiesByIds'));\n }\n\n public function testGetCompaniesByIds(): void\n {\n $crmIds = ['company1', 'company2'];\n $fields = ['name', 'industry'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getCompaniesByIds'));\n }\n\n public function testGetContactsByIds(): void\n {\n $crmIds = ['contact1', 'contact2'];\n $fields = ['firstname', 'lastname'];\n\n // Test basic functionality - method exists and returns array\n $this->assertTrue(method_exists($this->client, 'getContactsByIds'));\n }\n\n public function testBatchReadObjectsEmptyIds(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $result = $method->invokeArgs($this->client, ['deals', [], ['dealname']]);\n\n $this->assertEquals([], $result);\n }\n\n public function testBatchReadObjectsExceedsBatchSize(): void\n {\n $crmIds = array_fill(0, 101, 'deal_id'); // 101 IDs, exceeds limit of 100\n\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\InvalidArgumentException::class);\n $this->expectExceptionMessage('Batch size cannot exceed 100 deals');\n\n $method->invokeArgs($this->client, ['deals', $crmIds, ['dealname']]);\n }\n\n public function testBatchReadObjectsUnsupportedObjectType(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $method = $reflection->getMethod('batchReadObjects');\n $method->setAccessible(true);\n\n $this->expectException(\\Jiminny\\Exceptions\\CrmException::class);\n $this->expectExceptionMessage('Failed to batch fetch unsupported');\n\n $method->invokeArgs($this->client, ['unsupported', ['id1'], ['field1']]);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequest401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Unauthorized', 401);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithBadRequestNon401(): void\n {\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\BadRequest('Bad Request', 400);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleRequestException(): void\n {\n $response = new Response(401, [], 'Unauthorized');\n $exception = new \\GuzzleHttp\\Exception\\RequestException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), $response);\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithGuzzleClientException(): void\n {\n $exception = new \\GuzzleHttp\\Exception\\ClientException('Unauthorized', new \\GuzzleHttp\\Psr7\\Request('GET', 'test'), new Response(401));\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithStringMatching(): void\n {\n $exception = new \\Exception('HTTP 401 Unauthorized error occurred');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertTrue($result);\n }\n\n public function testIsUnauthorizedExceptionWithNonUnauthorized(): void\n {\n $exception = new \\Exception('Some other error');\n\n $result = $this->client->isUnauthorizedException($exception);\n\n $this->assertFalse($result);\n }\n\n public function testEnsureValidTokenWithNullOauthAccount(): void\n {\n $reflection = new \\ReflectionClass($this->client);\n $oauthAccountProperty = $reflection->getProperty('oauthAccount');\n $oauthAccountProperty->setAccessible(true);\n $oauthAccountProperty->setValue($this->client, null);\n\n // Should not throw exception and not call token manager\n $this->tokenManagerMock->expects($this->never())->method('ensureValidToken');\n\n $this->client->ensureValidToken();\n\n $this->assertTrue(true); // Test passes if no exception is thrown\n }\n\n public function testGetConfig(): void\n {\n $result = $this->client->getConfig();\n\n $this->assertSame($this->config, $result);\n }\n\n public function testGetOwners(): void\n {\n // Test that the method exists and can be called\n $this->assertTrue(method_exists($this->client, 'getOwners'));\n\n // Since getOwners has complex HubSpot API dependencies,\n // we'll just verify the method exists for now\n $this->assertIsCallable([$this->client, 'getOwners']);\n }\n\n public function testCreateMeeting(): void\n {\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Test Meeting',\n 'hs_meeting_start_time' => '2024-01-01T10:00:00Z',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => 'meeting123']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with('/crm/v3/objects/meetings', 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->createMeeting($payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testUpdateMeeting(): void\n {\n $meetingId = 'meeting123';\n $payload = [\n 'properties' => [\n 'hs_meeting_title' => 'Updated Meeting',\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['id' => $meetingId, 'updated' => true]);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v3/objects/meetings/{$meetingId}\", 'PATCH', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->updateMeeting($meetingId, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testAddAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/create\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->addAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n public function testRemoveAssociations(): void\n {\n $objectType = 'deals';\n $associationType = 'contacts';\n $payload = [\n 'inputs' => [\n ['from' => ['id' => 'deal1'], 'to' => ['id' => 'contact1']],\n ],\n ];\n\n $expectedResponse = $this->generateHubSpotResponse(['status' => 'success']);\n\n $this->client->expects($this->once())\n ->method('makeRequest')\n ->with(\"/crm/v4/associations/{$objectType}/{$associationType}/batch/archive\", 'POST', $payload)\n ->willReturn($expectedResponse);\n\n $result = $this->client->removeAssociations($objectType, $associationType, $payload);\n\n $this->assertSame($expectedResponse, $result);\n }\n\n // -------------------------------------------------------------------------\n // search() / executeRequest() tests\n // -------------------------------------------------------------------------\n\n public function testSearchReturnsDecodedArrayOnSuccess(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $payload = ['filters' => []];\n $responseData = ['results' => [['id' => '1']], 'total' => 1, 'paging' => []];\n $hubspotResponse = new HubspotResponse(new Response(200, [], json_encode($responseData)));\n\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->with('POST', Client::BASE_URL . '/crm/v3/objects/contacts/search', ['json' => $payload])\n ->willReturn($hubspotResponse);\n\n $result = $this->client->search('contacts', $payload);\n\n $this->assertSame($responseData, $result);\n\n Mockery::close();\n }\n\n public function testSearchThrowsRateLimitExceptionWhenCircuitBreakerActive(): void\n {\n $futureTimestamp = (string) (time() + 30);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(42);\n\n $this->hubspotClientMock->expects($this->never())->method('request');\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot rate limit (cached circuit-breaker)');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchThrowsRateLimitExceptionAndSetsNxOnFresh429(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n // NX + TTL option array — exact TTL depends on parseRetryAfter, verified separately\n $redisMock->shouldReceive('set')\n ->once()\n ->with(\n 'hubspot:ratelimit:portal:42',\n Mockery::type('string'),\n Mockery::on(fn ($opts) => is_array($opts) && in_array('nx', $opts, true))\n );\n\n $this->config->method('getId')->willReturn(42);\n\n $badRequest = new BadRequest('Rate limit exceeded', 429);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($badRequest);\n\n $this->expectException(RateLimitException::class);\n $this->expectExceptionMessage('Hubspot returned 429');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchPropagatesNonRateLimitException(): void\n {\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn(null);\n\n $this->config->method('getId')->willReturn(42);\n\n $exception = new \\SevenShores\\Hubspot\\Exceptions\\HubspotException('Server error', 500);\n $this->hubspotClientMock\n ->expects($this->once())\n ->method('request')\n ->willThrowException($exception);\n\n $this->expectException(\\SevenShores\\Hubspot\\Exceptions\\HubspotException::class);\n $this->expectExceptionMessage('Server error');\n\n try {\n $this->client->search('contacts', []);\n } finally {\n Mockery::close();\n }\n }\n\n public function testSearchCircuitBreakerRetryAfterComputedFromStoredTimestamp(): void\n {\n $remaining = 45;\n $futureTimestamp = (string) (time() + $remaining);\n\n $redisMock = Mockery::mock('alias:Illuminate\\Support\\Facades\\Redis');\n $redisMock->shouldReceive('get')->once()->andReturn($futureTimestamp);\n\n $this->config->method('getId')->willReturn(1);\n\n try {\n $this->client->search('deals', []);\n $this->fail('Expected RateLimitException');\n } catch (RateLimitException $e) {\n $this->assertGreaterThanOrEqual(1, $e->getRetryAfter());\n $this->assertLessThanOrEqual($remaining, $e->getRetryAfter());\n } finally {\n Mockery::close();\n }\n }\n\n // -------------------------------------------------------------------------\n // isHubspotRateLimit() tests\n // -------------------------------------------------------------------------\n\n public function testIsHubspotRateLimitReturnsTrueForBadRequest429(): void\n {\n $e = new BadRequest('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForDealApiException429(): void\n {\n $e = new DealApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForContactApiException429(): void\n {\n $e = new ContactApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForCompanyApiException429(): void\n {\n $e = new CompanyApiException('Too Many Requests', 429);\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsTrueForGuzzleRequestException429(): void\n {\n $request = new \\GuzzleHttp\\Psr7\\Request('POST', 'https://api.hubapi.com/test');\n $response = new \\GuzzleHttp\\Psr7\\Response(429);\n $e = new \\GuzzleHttp\\Exception\\RequestException('Too Many Requests', $request, $response);\n\n $this->assertTrue($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForBadRequestNon429(): void\n {\n $e = new BadRequest('Bad Request', 400);\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n public function testIsHubspotRateLimitReturnsFalseForGenericException(): void\n {\n $e = new \\RuntimeException('Something went wrong');\n $this->assertFalse($this->client->isHubspotRateLimit($e));\n }\n\n // -------------------------------------------------------------------------\n // parseRetryAfter() tests\n // -------------------------------------------------------------------------\n\n public function testParseRetryAfterReadsRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['30']]);\n $this->assertSame(30, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReadsLowercaseRetryAfterHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['retry-after' => ['15']]);\n $this->assertSame(15, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterHandlesScalarHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => '60']);\n $this->assertSame(60, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDailyLimitDelay(): void\n {\n $e = new BadRequest('Daily rate limit exceeded');\n $this->assertSame(600, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsTenSecondlyDelay(): void\n {\n $e = new BadRequest('Ten secondly rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsSecondlyDelay(): void\n {\n $e = new BadRequest('Secondly rate limit exceeded');\n $this->assertSame(1, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterReturnsDefaultWhenNoHint(): void\n {\n $e = new BadRequest('Rate limit exceeded');\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n\n public function testParseRetryAfterIgnoresNonNumericHeader(): void\n {\n $e = new DealApiException('Too Many Requests', 429, ['Retry-After' => ['not-a-number']]);\n // Falls through to message parsing; \"Too Many Requests\" has no known keyword → default 10\n $this->assertSame(10, $this->client->parseRetryAfter($e));\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.42985374,"top":0.105347164,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.4424867,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"bounds":{"left":0.45345744,"top":0.10454908,"width":0.043882977,"height":0.015961692},"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.5063165,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.5162899,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.5249335,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.53357714,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/287","depth":4,"bounds":{"left":0.5472075,"top":0.103751,"width":0.025598405,"height":0.017557861},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.5728058,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.58144945,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.5900931,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.5987367,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.7250665,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"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":"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":"AXTextArea","text":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:18:53.903625Z\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812776,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812777,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812778,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812779,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812780,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812781,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812776,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812777,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812778,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812779,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812780,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Start {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:59:00\",\"to\":\"2026-05-11 14:15:00\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] End {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Memory usage {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":29183792,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] 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\":280.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring start {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring end {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring start {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring end {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:16\",\"to\":\"14:21\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:11\",\"to\":\"04:16\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:20] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:23:32.378841Z\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] 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\":223.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring start {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring end {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:08] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"902d78a8-be4c-4e27-9862-a462476468fd\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Done {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:34] local.NOTICE: Monitoring start {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:35] local.NOTICE: Monitoring end {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:25:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25: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\":\"c1ce205b-4ca9-46b0-8b6c-645849bb5ab7\",\"trace_id\":\"22ea08de-2b15-494c-accf-4bab1836b0ac\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"eb943195-2039-477b-833d-e32b19045440\",\"trace_id\":\"47cb265a-7c67-4c89-9cc2-83fee82c2678\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"b9ed3e6a-f2dd-4fbb-94f2-dffa408951e3\",\"trace_id\":\"3e30b53b-0c97-4bc2-a626-85e7911c743f\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}","depth":4,"on_screen":true,"value":"[2026-05-11 11:17:21] local.NOTICE: Monitoring start {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:21] local.NOTICE: Monitoring end {\"correlation_id\":\"885fde59-3852-4120-a620-af3da7ecce17\",\"trace_id\":\"4cc10f53-5d39-418d-8e98-fe53d9bbff5f\"}\n[2026-05-11 11:17:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a773fb28-5a0c-4b8f-a1b5-d57e6b81db90\",\"trace_id\":\"fb6d8028-db7d-4ef2-b175-740f0a7b8b39\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"01554272-3758-416d-bcd8-0b07cf17fce3\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:38] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"6f97c580-31f1-4723-80d8-b1046a615d37\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":1} {\"correlation_id\":\"80fe8576-047a-495f-b42a-d75cb83d9591\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-c (truncated...)\n\"} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":2} {\"correlation_id\":\"55cd98de-2b2f-4dd6-b0d5-36af698ea32d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:39] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":3} {\"correlation_id\":\"05cfe3c8-6fd4-4a49-ab3c-70dfd05e457b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613840,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613840,\"participants\":[{\"id\":1001764,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001765,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613840,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613840,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613840} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613840,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613840,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"8ccfe9b2-ef68-4a3d-95a5-5ca1667f2a59\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613833,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613833,\"participants\":[{\"id\":1001750,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001751,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.0,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613833,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613833,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613833} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613833,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613833,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"41fb906c-1cf1-4cdb-b1bd-c638f6abc0fe\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613827,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613827,\"participants\":[{\"id\":1001734,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001735,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613827,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613827,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613827} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613827,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613827,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"d1d42ab0-5c87-42e8-a91f-a56b538619ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613826,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613826,\"participants\":[{\"id\":1001732,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001733,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613826,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613826,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613826} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613826,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613826,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"861e79c7-b5d3-4476-b429-0f1b4cf196a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613820,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613820,\"participants\":[{\"id\":1001721,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001722,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613820,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613820,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613820} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613820,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613820,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97a99ff2-5956-4d77-837b-790c01b09967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613818,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613818,\"participants\":[{\"id\":1001717,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001718,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613818,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613818,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613818} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613818,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613818,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"300f80c3-6a45-4372-85a9-9fe439206596\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613812,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613812,\"participants\":[{\"id\":1001705,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001706,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613812,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613812,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613812} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613812,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613812,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7a348156-9d36-4f25-ad5e-4fbfce8fd82a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613807,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613807,\"participants\":[{\"id\":1001690,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001691,\"user_id\":null,\"contact_id\":4484,\"lead_id\":null}]} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613807,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4484,\"owner_id\":253} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4484} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4484,\"opportunity_id\":276} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"tsvetomir.banovski@gmail.com\"} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613807,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613807} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613807,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613807,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4484,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"499c94c1-2716-49a2-9cdf-d5eb84f68ac6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613806,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613806,\"participants\":[{\"id\":1001688,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001689,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613806,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":253} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613806,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613806} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613806,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613806,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"7ce06f3c-60ee-46e5-a4dd-5b2b95b5bb64\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613805,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613805,\"participants\":[{\"id\":1001686,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1001687,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613805,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613805,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613805} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613805,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613805,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"9d268b15-7a74-40a7-a15c-f91054c54d96\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613698,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613698,\"participants\":[{\"id\":1001667,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001668,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613698,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613698,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613698} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613698,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613698,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"b347b4f8-2099-4fd0-86a2-735eb4d1c5a0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613697,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613697,\"participants\":[{\"id\":1001665,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001666,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613697,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613697,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613697} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613697,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613697,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"bbd8f44b-f8df-4187-889c-55f3536e4b2b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613696,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613696,\"participants\":[{\"id\":1001663,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001664,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613696,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613696,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613696} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613696,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613696,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"a49ef1a2-1961-4831-8425-89bedec362f9\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613695,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613695,\"participants\":[{\"id\":1001661,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001662,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613695,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613695,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613695} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613695,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613695,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"5a448789-544e-4bf0-906d-aa7745a76fa7\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613694,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613694,\"participants\":[{\"id\":1001659,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1001660,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613694,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613694,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613694} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613694,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613694,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"816a5557-12ef-4f10-964e-fb5da4d1024b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613157,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613157,\"participants\":[{\"id\":1000746,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000747,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613157,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613157,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613157} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613157,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613157,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"03eaee80-dad2-4f52-b0c4-ca587c0bd5a1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613156,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613156,\"participants\":[{\"id\":1000744,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000745,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613156,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613156,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613156} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613156,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613156,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"0e646a90-8a23-4b8f-bef7-d4404cdc448e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613155,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613155,\"participants\":[{\"id\":1000742,\"user_id\":253,\"contact_id\":null,\"lead_id\":null},{\"id\":1000743,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613155,\"team_id\":2,\"email\":\"preslava.ivanova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613155,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613155} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613155,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613155,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"e5deb2bc-6198-453a-bc77-dfc3b86ed330\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"859a4ec6-5c81-4283-bb96-c3ebaf5ff599\",\"trace_id\":\"f8a2783e-c54a-4d43-8cf6-61594479b0e7\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":613130,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":613130,\"participants\":[{\"id\":1000693,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000694,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":613130,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":613130,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":613130} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":613130,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":613130,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"82d063fd-d6ec-4181-b9db-f7a3ef17fdaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612924,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612924,\"participants\":[{\"id\":1000290,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000291,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612924,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":19} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":165} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612924,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612924} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612924,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612924,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"cb00d0fd-ad25-43c5-8390-7596ea614d43\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612923,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612923,\"participants\":[{\"id\":1000288,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000289,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612923,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612923,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612923} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612923,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612923,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"2c16c154-a215-4582-9980-ebd7ee64044a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612922,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89}} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612922,\"participants\":[{\"id\":1000286,\"user_id\":19,\"contact_id\":null,\"lead_id\":null},{\"id\":1000287,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612922,\"team_id\":2,\"email\":\"james.graham@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612922,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612922} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612922,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612922,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":165,\"stage_id\":89} {\"correlation_id\":\"4b1d2748-24b2-4a6b-8e7a-2fef29e92699\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:43] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-d (truncated...)\n\"} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":5} {\"correlation_id\":\"370e35c5-d81b-4c82-987e-e6bfe92913c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612822,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612822,\"participants\":[{\"id\":1000080,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000081,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612822,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612822,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612822} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612822,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612822,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"629c3489-2741-42d3-872d-118c8ddef317\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.WARNING: [Hubspot] Received 429 from API {\"team_id\":2,\"config_id\":2,\"retry_after\":1,\"reason\":\"Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response:\n{\\\"status\\\":\\\"error\\\",\\\"message\\\":\\\"You have reached your secondly limit.\\\",\\\"errorType\\\":\\\"RATE_LIMIT\\\",\\\"correlationId\\\":\\\"019e16c1-e (truncated...)\n\"} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:47] local.INFO: [HandleHubspotRateLimit] Rate limit caught, releasing job with delay {\"job_class\":\"Jiminny\\\\Jobs\\\\Crm\\\\MatchActivityCrmData\",\"attempts\":1,\"retry_after\":1,\"delay\":4} {\"correlation_id\":\"275577f1-42f7-466e-9ce6-c17b3f2fa4ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612673,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612673,\"participants\":[{\"id\":999993,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999994,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612673,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612673,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612673} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612673,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612673,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"7d0f2fd2-918d-403e-a6ce-e803fbdc5b08\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612642,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612642,\"participants\":[{\"id\":999935,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999936,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612642,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612642,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612642} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612642,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612642,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"97ce283e-ee51-4404-bc23-21d951bddd4b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612598,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612598,\"participants\":[{\"id\":999857,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999858,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612598,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612598,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612598} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612598,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612598,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"dd9259e7-418a-47a0-8057-6d73eb23b66f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612597,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612597,\"participants\":[{\"id\":999855,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999856,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612597,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612597,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612597} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612597,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612597,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"e3420252-13cf-48c2-bb64-835fa0b7a4a4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612596,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612596,\"participants\":[{\"id\":999853,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999854,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612596,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612596,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612596} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612596,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:55] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612596,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0a7ad0b2-4fbb-4bc6-ac63-ab9a3755668d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612595,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612595,\"participants\":[{\"id\":999851,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999852,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612595,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612595,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612595} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612595,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:56] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612595,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ab7b332f-3248-47be-ae07-2194ad2db67f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612594,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612594,\"participants\":[{\"id\":999849,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999850,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612594,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612594,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612594} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612594,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:57] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612594,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"3e75582e-1c8d-4a79-b2f5-c5b402351b6e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612593,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612593,\"participants\":[{\"id\":999847,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999848,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612593,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612593,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612593} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612593,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612593,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"aa3bcf96-a28f-41da-9705-9ed54e0c2102\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612592,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:58] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612592,\"participants\":[{\"id\":999845,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999846,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612592,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612592,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612592} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612592,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612592,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"26135f3d-da44-4d76-a60f-10382d2fb967\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612591,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:17:59] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612591,\"participants\":[{\"id\":999843,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999844,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612591,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612591,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612591} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612591,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612591,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b8d871e8-9441-4887-b52c-673ba317b86f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612590,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612590,\"participants\":[{\"id\":999841,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999842,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612590,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612590,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612590} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612590,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:00] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612590,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"a5db6a27-7474-478f-ae10-588189dcf4c5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612589,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612589,\"participants\":[{\"id\":999839,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999840,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612589,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612589,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612589} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612589,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612589,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"cf2e7822-f4b9-4a8d-8a4f-191d404ca5d8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612588,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:01] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612588,\"participants\":[{\"id\":999837,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999838,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612588,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612588,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612588} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612588,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612588,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"48ab04f3-8832-412a-b14d-ef2d05d438c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":16.99,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612587,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612587,\"participants\":[{\"id\":999835,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999836,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612587,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612587,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612587} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612587,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612587,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"ddc565df-f051-4082-9bd2-4eb892b2bed2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612586,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612586,\"participants\":[{\"id\":999833,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999834,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612586,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612586,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612586} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612586,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:02] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612586,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"0ec5d5d4-7b90-4702-86a4-3dd3318a0456\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612585,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612585,\"participants\":[{\"id\":999831,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999832,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612585,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612585,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612585} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612585,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612585,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"06ce1669-8714-4bd5-b110-0d8905e544eb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612584,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:04] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612584,\"participants\":[{\"id\":999829,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999830,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612584,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612584,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612584} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612584,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612584,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9e046bb0-fe09-4981-90d8-9e4e1a2d9821\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612583,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:06] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612583,\"participants\":[{\"id\":999827,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999828,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612583,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612583,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612583} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:07] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612583,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:08] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612583,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"4bb39316-5956-491d-9643-e85e3a2d2295\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612582,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612582,\"participants\":[{\"id\":999825,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999826,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612582,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612582,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612582} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:09] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612582,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:10] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612582,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"233ce7c6-8ba8-4646-b04e-55dc11e56023\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612581,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612581,\"participants\":[{\"id\":999823,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999824,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":4.14,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:11] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612581,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612581,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612581} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612581,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:12] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612581,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"225d184a-6550-4e96-b55f-b2f6affc3f72\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612565,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612565,\"participants\":[{\"id\":999789,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999790,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null}]} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:15] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612565,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612565,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612565} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:15] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612565,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612565,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"b86ac27b-8e79-4924-8480-832bda0a162c\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612563,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:16] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612563,\"participants\":[{\"id\":999784,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999785,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612563,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":206} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:17] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"feff8215-75fe-40b2-916e-951435e048aa\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:18] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612563,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612563} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612563,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612563,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"8e17d06e-8ffc-4d65-80f6-6b11aa27d46e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:19] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.06,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:19] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"5a640073-717d-40da-ad67-be02e37c56a2\",\"trace_id\":\"46d069ed-7c2b-4fdc-9679-9ec571a88271\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612562,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612562,\"participants\":[{\"id\":999782,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999783,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:20] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447782589921@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447782589921%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:21] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.24,\"average_seconds_per_request\":0.24} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:22] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.32,\"average_seconds_per_request\":0.32} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612562,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612562,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612562} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612562,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612562,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"dd25d3ff-8533-4fac-bf1d-a0656234ea85\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612561,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612561,\"participants\":[{\"id\":999780,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999781,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:23] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612561,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/447700174614.447782589921.OeREojLVnk%40txt.staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447700174614.447782589921.OeREojLVnk@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612561,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612561} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612561,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612561,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"726b3674-684a-493a-8b19-6872339717d0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612560,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612560,\"participants\":[{\"id\":999778,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999779,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"447782589921@txt.staging.jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"447782589921@txt.staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612560,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612560,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612560} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612560,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:24] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612560,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"028beef2-7b15-4dd5-80e0-0629fd918aaf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612559,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":1.89,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612559,\"participants\":[{\"id\":999776,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999777,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612559,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":69,\"contact_id\":97,\"owner_id\":206} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":69,\"contact_id\":97} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":69,\"contact_id\":97,\"opportunity_id\":5011} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612559,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612559} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612559,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:26] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612559,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"4e01dc54-b912-46cc-bf4c-c6a0fd5627f0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612558,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612558,\"participants\":[{\"id\":999774,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999775,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612558,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612558,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612558} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612558,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612558,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"49d539c3-0bf6-4b41-a98a-fbca0ca960cd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612557,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612557,\"participants\":[{\"id\":999772,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999773,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612557,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612557,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612557} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612557,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612557,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"d6767fbf-b735-4480-843b-1d9d574b133d\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612556,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612556,\"participants\":[{\"id\":999770,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999771,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612556,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612556,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612556} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612556,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:27] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612556,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"04fa4b73-a2e0-4804-8722-18bdec56afab\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612555,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612555,\"participants\":[{\"id\":999768,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999769,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612555,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612555,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612555} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612555,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612555,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"1b1e56f6-7c50-4a00-988b-fcfda312d1c8\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612554,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612554,\"participants\":[{\"id\":999766,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999767,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612554,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612554,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612554} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612554,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612554,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"9ab5fb67-2687-4495-84e5-d9492e1ad9ae\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612553,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:28] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612553,\"participants\":[{\"id\":999764,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999765,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612553,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612553,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612553} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612553,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:29] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612553,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"95dabb64-e2cf-4104-9858-8b381c71b4d6\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612552,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612552,\"participants\":[{\"id\":999762,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999763,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612552,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612552,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612552} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612552,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612552,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"cdcd7a84-bff0-4af9-b585-aa58265b4692\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612551,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612551,\"participants\":[{\"id\":999760,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999761,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612551,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612551,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612551} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612551,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612551,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"3e0c6785-d4f6-48e6-a6b2-8289e6764698\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612550,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612550,\"participants\":[{\"id\":999758,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999759,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612550,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612550,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612550} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612550,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612550,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"e1db7837-d58d-4bd7-b7e5-f6263da1cf69\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612549,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34}} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612549,\"participants\":[{\"id\":999756,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999757,\"user_id\":null,\"contact_id\":97,\"lead_id\":null}]} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612549,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinsoncrusoe@test.com\"} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612549,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612549} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612549,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612549,\"remote_search\":true,\"lead_id\":null,\"contact_id\":97,\"account_id\":69,\"opportunity_id\":5011,\"stage_id\":34} {\"correlation_id\":\"bc7e6057-3b4a-446f-8989-b0c166f4bec0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612365,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612365,\"participants\":[{\"id\":999563,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999564,\"user_id\":206,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":243,\"contact_id\":4491,\"owner_id\":206} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":243,\"contact_id\":4491} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:30] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":243,\"contact_id\":4491,\"opportunity_id\":276} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612365,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612365,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612365} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612365,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612365,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"8e7dd343-a500-4f4c-9e6d-55a13cdb2112\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612360,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612360,\"participants\":[{\"id\":999552,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999553,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999565,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612360,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.29,\"average_seconds_per_request\":0.29} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612360,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612360} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612360,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612360,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"21abffc3-5241-4708-b3e0-abd2dd288cde\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612340,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612340,\"participants\":[{\"id\":999516,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999517,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999518,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999519,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:31] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612340,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.34,\"average_seconds_per_request\":0.34} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612340,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612340} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612340,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612340,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"1b3ea0b3-7411-4358-9981-f09a275a33dd\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.75,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612339,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612339,\"participants\":[{\"id\":999514,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999515,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999540,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612339,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612339,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612339} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612339,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612339,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"9361adaf-f558-47e1-8c17-29624076d6b0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612336,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36}} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612336,\"participants\":[{\"id\":999508,\"user_id\":null,\"contact_id\":4491,\"lead_id\":null},{\"id\":999509,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":999512,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":999513,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"horencho@gmail.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612336,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612336,\"participants_processed\":4,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612336} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612336,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612336,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4491,\"account_id\":243,\"opportunity_id\":276,\"stage_id\":36} {\"correlation_id\":\"df588253-5bf4-461b-848b-24cdc4f6b9ce\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612183,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612183,\"participants\":[{\"id\":999227,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999228,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":261} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":299} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612183,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612183,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612183} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:32] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612183,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612183,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a3a820f-a56a-4ab6-a0b0-1a27257889a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612182,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612182,\"participants\":[{\"id\":999225,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999226,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612182,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612182,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612182} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612182,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612182,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"0ddb68fc-c275-46bd-98a1-95de8b8b0f8e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612181,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612181,\"participants\":[{\"id\":999223,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999224,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612181,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612181,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612181} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612181,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612181,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"1a86dfbb-2141-4f4a-940b-43fbd1f8ddf1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612180,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612180,\"participants\":[{\"id\":999221,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":999222,\"user_id\":261,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612180,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612180,\"participants_processed\":2,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612180} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612180,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:33] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612180,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"correlation_id\":\"4f63b5e4-5027-4921-92f6-5421affdb43f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611455,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611455,\"participants\":[{\"id\":997961,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997962,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.23,\"average_seconds_per_request\":0.23} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:34] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:35] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.27,\"average_seconds_per_request\":0.27} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611455,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611455,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611455} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611455,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611455,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"05046735-5c60-4f00-bdf3-b8c4869f818e\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611451,\"participants\":[{\"id\":997955,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997956,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"support@staging.jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/support%40staging.jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:36] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:37] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:38] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.44,\"average_seconds_per_request\":0.44} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":3.16,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:40] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611451} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"471d15bb-ac2d-44a9-ad19-7e4dcffe21a5\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611087,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611087,\"participants\":[{\"id\":997368,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997369,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611087,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611087,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611087} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611087,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611087,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"57ae5f63-477d-4d91-a9a3-8706092bf1e1\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":611076,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":611076,\"participants\":[{\"id\":997346,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997347,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":611076,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":611076,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":611076} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":611076,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:41] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":611076,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2f7ba226-575b-41a7-a3d7-85c8b1fbe96b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610935,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610935,\"participants\":[{\"id\":997141,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997142,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610935,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610935,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610935} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610935,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610935,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f2e5be67-dc9b-4211-994b-4582b631e128\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610915,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610915,\"participants\":[{\"id\":997104,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997105,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610915,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610915,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610915} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610915,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610915,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"b9f7b83f-19d2-4fc2-812d-a9d4dbaa6169\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610900,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610900,\"participants\":[{\"id\":997081,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997082,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610900,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610900,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610900} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610900,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:42] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610900,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"c45e3abe-1c98-4191-89dc-06c37af6a89a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610885,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610885,\"participants\":[{\"id\":997051,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997052,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610885,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610885,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610885} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610885,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610885,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"71c5715e-33f9-4ac4-a037-3f8d92f9323f\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610878,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610878,\"participants\":[{\"id\":997035,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997036,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610878,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610878,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610878} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610878,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:43] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610878,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"981ea94d-43c4-4549-a61a-38c0e6168aa4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610874,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610874,\"participants\":[{\"id\":997025,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997026,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610874,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610874,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610874} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610874,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610874,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"85e22bcd-46df-43fd-af31-f1fd6ea93304\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610867,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610867,\"participants\":[{\"id\":997011,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":997012,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610867,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610867,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610867} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:44] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610867,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610867,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"20f53637-e428-4d97-9c00-77128a6693bf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610764,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610764,\"participants\":[{\"id\":996951,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996952,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610764,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610764,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610764} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610764,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610764,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"31fb51e4-214a-4331-9ccb-e88251c31d23\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610617,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610617,\"participants\":[{\"id\":996641,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996642,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610617,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610617,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610617} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610617,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610617,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1195ea0b-ff6f-4868-85b8-00e5910a6ebb\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610539,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610539,\"participants\":[{\"id\":996485,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996486,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610539,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610539,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610539} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610539,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610539,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"a12553b5-487b-4fe5-9f92-b4f1ea60e934\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:45] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.4,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610528,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610528,\"participants\":[{\"id\":996463,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996464,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610528,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610528,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610528} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610528,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610528,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"2cbcee52-8293-4463-b697-38db65d9f9c0\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610506,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610506,\"participants\":[{\"id\":996419,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996420,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610506,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610506,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610506} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610506,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610506,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"ef47bda9-11c9-43e9-9486-e279b2651ddf\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610497,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610497,\"participants\":[{\"id\":996401,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996402,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610497,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610497,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610497} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610497,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610497,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"5c552582-cc35-429e-a270-3c590292f4d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610490,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610490,\"participants\":[{\"id\":996385,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996386,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:46] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610490,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610490,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610490} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610490,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610490,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"1d9665e5-1818-48ff-9e74-77325bc59987\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610470,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610470,\"participants\":[{\"id\":996369,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996370,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610470,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610470,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610470} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610470,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610470,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"d7791858-9c04-4d8c-9509-dd01f1eae66b\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610462,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610462,\"participants\":[{\"id\":996353,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996354,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610462,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610462,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610462} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610462,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610462,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"7eda1fd5-8bda-4f9e-94d0-866e72813503\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610451,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610451,\"participants\":[{\"id\":996340,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996341,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610451,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610451,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610451} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610451,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610451,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"13f3d6e6-73ba-4280-ae4d-1687fc9104d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610438,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610438,\"participants\":[{\"id\":996320,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996321,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610438,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610438,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610438} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610438,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610438,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"107b5e13-81e1-4cb5-b64e-174334224d3a\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610426,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:47] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610426,\"participants\":[{\"id\":996306,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996307,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610426,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610426,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610426} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610426,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610426,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"f048c662-0e8e-4156-905b-0e237663e017\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610403,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610403,\"participants\":[{\"id\":996282,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":996283,\"user_id\":18,\"contact_id\":null,\"lead_id\":null}]} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"support@staging.jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"support@staging.jiminny.com\",\"domain\":\"jiminny.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610403,\"team_id\":2,\"email\":\"veselin.kulov@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610403,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610403} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610403,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610403,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"correlation_id\":\"0bf21e74-7810-4594-8fa0-ac9df6a5b1c4\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":610400,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34}} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":610400,\"participants\":[{\"id\":996275,\"user_id\":1460,\"contact_id\":null,\"lead_id\":null},{\"id\":996276,\"user_id\":206,\"contact_id\":null,\"lead_id\":null},{\"id\":996277,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"aneliya.angelova@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":610400,\"team_id\":2,\"email\":\"horen.kirazyan@jiminny.onmicrosoft.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Searching DB for opportunity by owner {\"account_id\":244,\"contact_id\":4487,\"owner_id\":1460} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Fallback DB opportunity search {\"account_id\":244,\"contact_id\":4487} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: ProspectCache - Opportunity DB search results {\"account_id\":244,\"contact_id\":4487,\"opportunity_id\":350} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":610400,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":0,\"best_match_found\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":610400} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":610400,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":610400,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":350,\"stage_id\":34} {\"correlation_id\":\"ddac2edc-3725-4efd-b520-337c200e17d2\",\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614382,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614382,\"participants\":[{\"id\":1002632,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002633,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"nikolay.nikolov@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/nikolay.nikolov%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:48] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.51,\"average_seconds_per_request\":0.51} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:49] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.35,\"average_seconds_per_request\":0.35} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614382,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614382,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614382} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614382,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614382,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"adc1eae9-d4cb-481e-922f-179bac5a8934\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614381,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614381,\"participants\":[{\"id\":1002630,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002631,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614381,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614381,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614381} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614381,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614381,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"7fad664c-6cfc-402b-adac-89a4c8c5f4d1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":615092,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":615092,\"participants\":[{\"id\":1004102,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1004103,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":615092,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":615092,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":615092} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":615092,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":615092,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8e4b7ef5-6a2b-4f08-8a0d-528e39fe7930\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614436,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614436,\"participants\":[{\"id\":1002751,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002752,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614436,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614436,\"participants_processed\":2,\"exact_matches\":0,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614436} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614436,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614436,\"remote_search\":true,\"lead_id\":null,\"contact_id\":null,\"account_id\":26,\"opportunity_id\":22,\"stage_id\":89} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"8df9c375-43bc-41b1-a457-36d722a98ea1\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":614378,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:50] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":614378,\"participants\":[{\"id\":1002623,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1002624,\"user_id\":null,\"contact_id\":6167,\"lead_id\":null},{\"id\":1002625,\"user_id\":89,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"nikolay.nikolov@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"nikolay.nikolov@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"nmalchev@gmail.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":614378,\"team_id\":2,\"email\":\"nikolay.nikolov@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":614378,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":614378} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":614378,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":614378,\"remote_search\":true,\"lead_id\":null,\"contact_id\":6167,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"d586f923-bac1-482b-a699-2c7c262dee65\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612847,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612847,\"participants\":[{\"id\":1000130,\"user_id\":null,\"contact_id\":null,\"lead_id\":null},{\"id\":1000131,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000151,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.84,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:18:51] local.INFO: [Hubspot] Failed to fetch contact {\"email\":\"adelina.petrova@jiminny.com\",\"reason\":\"[404] Client error: `GET https://api.hubapi.com/crm/v3/objects/contacts/adelina.petrova%40jiminny.com?properties=email%2Cfirstname%2Clastname%2Ccountry%2Cphone%2Cmobilephone%2Cjobtitle%2Chubspot_owner_id%2Cassociatedcompanyid%2Cphoto&archived=0&idProperty=email` resulted in a `404 Not Found` response\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:51] local.INFO: [Prospect match] API returned empty result, caching the miss with empty prospect data {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/contact/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.28,\"average_seconds_per_request\":0.28} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\",\"crm\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [Prospect match] Cache miss, calling the API {\"identifier_type\":\"domain\",\"identifier\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] importAccount {\"crm_provider_id\":\"749766179\",\"config_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:52] local.INFO: [HubSpot] CRM Search requested {\"request\":{\"filterGroups\":[{\"filters\":[{\"propertyName\":\"associations.company\",\"operator\":\"EQ\",\"value\":\"749766179\"},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedwon\",\"4040964\",\"59247967\"]},{\"propertyName\":\"dealstage\",\"operator\":\"NOT_IN\",\"values\":[\"closedlost\",\"4040965\",\"59247968\"]}]}],\"sorts\":[{\"propertyName\":\"modifieddate\",\"direction\":\"DESCENDING\"}],\"properties\":[\"dealname\",\"amount\",\"hubspot_owner_id\",\"pipeline\",\"dealstage\",\"closedate\",\"deal_currency_code\"],\"limit\":200}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":10,\"total_elapsed_seconds\":0.43,\"average_seconds_per_request\":0.43} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612847,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:53] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612847,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612847} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612847,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612847,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"2dfb95b0-e84e-4956-8d2c-59d97cc1a442\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":612819,\"remote_search\":true,\"set_configuration\":2,\"old_state\":{\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36}} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Participants old state {\"activity\":612819,\"participants\":[{\"id\":1000073,\"user_id\":null,\"contact_id\":4487,\"lead_id\":null},{\"id\":1000074,\"user_id\":261,\"contact_id\":null,\"lead_id\":null},{\"id\":1000075,\"user_id\":null,\"contact_id\":null,\"lead_id\":null}]} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"robinson@crusoe.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] Email domain belongs to the team, skipping crm lookup {\"activity_id\":612819,\"team_id\":2,\"email\":\"adelina.petrova@jiminny.onmicrosoft.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Cache / local search hit {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] cached empty result - no API calls, try next matching method {\"identifier_type\":\"email\",\"identifier\":\"adelina.petrova@jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [Prospect match] Resolved company domain from email {\"email\":\"adelina.petrova@jiminny.com\",\"domain\":\"jiminny.com\"} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [CrmActivityService] CRM matching completed {\"activity_id\":612819,\"participants_processed\":3,\"exact_matches\":1,\"domain_matches\":1,\"best_match_found\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ EsUpdateTarget ] Update single target {\"target\":\"activities\",\"purpose\":\"searchable-observer-update\",\"entityId\":612819} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [ AsyncUpdateElasticSearch ] Entity added to Redis list {\"entityType\":\"activities\",\"entityId\":612819,\"collectionKey\":\"activities-for-update-priority\",\"withPriority\":true} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:54] local.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":612819,\"remote_search\":true,\"lead_id\":null,\"contact_id\":4487,\"account_id\":244,\"opportunity_id\":299,\"stage_id\":36} {\"trace_id\":\"6cee2988-85fe-44ce-ba47-56fc0392669c\",\"correlation_id\":\"da5b27d2-94da-4c45-a312-1c293b8ad38d\"}\n[2026-05-11 11:18:57] local.INFO: [ EsUpdateProcessManager ] Finished updating entities in ES {\"worker\":\"\",\"peak_memory\":\"99.73 MB\",\"elapsed_seconds\":0.25,\"update_target\":\"activities\",\"should_iterate_again\":false} {\"correlation_id\":\"8c24420c-db53-4450-9cd8-db5d2426bd57\",\"trace_id\":\"5406d133-f6cd-4f5a-b463-9146e1dfb021\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70d16739-7654-4185-99cb-49559aafc660\",\"trace_id\":\"d100f21a-5975-471a-b245-90b25b177c8f\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91df8068-6c15-4614-947e-90f48574662c\",\"trace_id\":\"a9a86198-7521-4c0c-a89e-d23b34f2f8bf\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"6fae005c-3fcd-4718-86b0-f08f140f889c\",\"trace_id\":\"233ad400-a3ad-4093-8660-9e477cd6ca8f\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08b79017-e665-425f-8048-21f93b1abf3b\",\"trace_id\":\"bb7a7ea5-30d3-4a13-9c3c-84bc1f9c26e7\"}\n[2026-05-11 11:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:19:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c31163b-b05f-4d3f-9a66-a2ce01d94010\",\"trace_id\":\"3dfb6352-28a3-4c77-b6ff-a11e0a7821a0\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb3a4a64-b00b-4f94-9e00-c190cd7a7a42\",\"trace_id\":\"acd43b75-f255-471f-9563-f03de03c7e23\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ab6728e-9079-4166-bf97-fed4fb2ac7de\",\"trace_id\":\"508ecd6c-81db-47d4-8fad-d40b1e55cff3\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring start {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:13] local.NOTICE: Monitoring end {\"correlation_id\":\"98b2a767-ff2a-4f82-866f-bf7dad58fe13\",\"trace_id\":\"ecb25ade-8dda-4d47-8bce-6b84e3c8fd0c\"}\n[2026-05-11 11:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05f19e62-48e4-4c36-9577-648a2dd54abd\",\"trace_id\":\"e3d3acd1-5c23-4f37-9566-32a0cbd7a4eb\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5c19bc5-1a17-4b6d-9f62-a6715a8005c9\",\"trace_id\":\"451385cf-1bcd-4e06-8412-e5d197f5f567\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:18:00, 2026-05-11 11:20:00] {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a01c4c40-1c1e-4865-be1f-0aa63b4fd1b9\",\"trace_id\":\"cba182ec-cbe6-4d53-b1c6-253546138cc8\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b599f338-6a44-44d5-9f81-6fa300c4ea1b\",\"trace_id\":\"c7645418-4758-4410-83f2-8fe71ebf2ec2\"}\n[2026-05-11 11:20:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c9d7674-d005-4372-8a60-2e8ecb587584\",\"trace_id\":\"22a0bdee-d653-4113-963c-043a68a4a8be\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1453203b-bac8-47ba-ac62-6369ac533fc2\",\"trace_id\":\"f176800e-9da8-4580-a332-56fa3402dbb7\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:10:00, 2026-05-11 11:15:00] {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2310f110-1f7e-4a28-b0c3-e5f8fc72688f\",\"trace_id\":\"9d6e8217-2f4e-4b23-8f36-8538f57064d9\"}\n[2026-05-11 11:20:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:15\",\"to\":\"11:20\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:10\",\"to\":\"01:15\"} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48a2dc23-76e1-4b34-b8a7-a7a957c71373\",\"trace_id\":\"b1788ca3-54cf-4031-b198-102838446996\"}\n[2026-05-11 11:20:41] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] 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\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cb985c75-d47d-45c5-a37a-f6f0c95026fd\",\"trace_id\":\"bde7c5d1-1c73-488b-a11c-a2c8701ef310\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:22:48.807561Z\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28cf48be-a629-420c-a0a4-0d20fbd05838\",\"trace_id\":\"4fdaba19-5d8e-45db-a600-da048c8066fb\"}\n[2026-05-11 11:20:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a6c06af-94cf-46bf-976e-55e401b3a588\",\"trace_id\":\"338c3b84-fc5a-404b-bed6-97341331ae68\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d52370-b908-428c-b973-699db0be2136\",\"trace_id\":\"fabc1f54-e263-4ba0-b8ff-324f62e84f1f\"}\n[2026-05-11 11:20:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:20:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de84a4c9-d2c5-4950-8c2d-f400cee667bf\",\"trace_id\":\"223fd9b2-ed24-4083-98cd-1bc4040dbbd1\"}\n[2026-05-11 11:20:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0bfe72bb-b4b3-4001-950a-4ff144759ece\",\"trace_id\":\"2278148b-b05e-4dc0-90be-418928a8ce59\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b86ad86-7514-4e2f-96f3-38c27443e433\",\"trace_id\":\"93cbf126-a6cf-452b-8056-69a67a3c9b0d\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring start {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:37] local.NOTICE: Monitoring end {\"correlation_id\":\"c0c5ae9d-2fb5-4d62-9edf-08ff810f36d4\",\"trace_id\":\"797998aa-d80e-4a50-826b-c67d573968bd\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9ef0b83-7162-48d6-91a3-a38717b8f61f\",\"trace_id\":\"a2ab36b2-1cd0-4e98-8b49-48078ef572db\"}\n[2026-05-11 11:21:45] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:45] 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\":329.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"954d156d-8a4f-4592-a046-e16c5dd7d3bf\",\"trace_id\":\"ecc7aeb5-a4e6-4a0d-9ebd-4aeb260f5d55\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"241421de-745e-44a3-a65f-377d105b241e\",\"trace_id\":\"c3b9e86b-adf4-459b-9ec1-f106c8ed60ff\"}\n[2026-05-11 11:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50fe8230-c5ed-4686-bbf5-bb8aed21b266\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23350336,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] 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\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":52.26,\"usage\":23416376,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"60bc4807-da21-4916-a8a7-22fa9ae06442\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23374592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:00] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] 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.28,\"average_seconds_per_request\":0.28} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":288.59} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":332.08,\"usage\":23438944,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"23559a13-2f18-4d56-8530-26f2291380ef\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23416872,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.21,\"usage\":23401296,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"d77fb655-5cd1-4a3e-9e6e-b74111585357\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23361936,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:22:01] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.19,\"usage\":23404880,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"0fb5e634-6f53-4967-b07e-2a3be8c177eb\",\"trace_id\":\"60cd5a4d-d11d-43f6-9821-483d873cad6d\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1c8bcd6-91f4-42d0-88dc-ec5b5ac1e352\",\"trace_id\":\"3c7f985d-a1c4-4beb-ae19-8d241a1b8c45\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0686b7-9d0e-4130-a2f7-ff021175c9c0\",\"trace_id\":\"e91321fc-accd-4dbc-b887-6c13f3a74d5e\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring start {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:10] local.NOTICE: Monitoring end {\"correlation_id\":\"6d366728-e0b2-43d4-9b02-8e0d3d01d0ae\",\"trace_id\":\"2a4100dd-0e15-4378-b901-26aafd0ac5f2\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa57196c-91a8-4e79-a936-fd162b28c001\",\"trace_id\":\"e8937547-f6f6-4a61-9a3f-36e854ecbf96\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8bc0ac28-787b-40b1-b50a-82d72b60cb7d\",\"trace_id\":\"591a2cc9-c870-4a79-aaf1-0a25c359fe44\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa85bd5a-e1eb-4068-856f-1f06467bae1c\",\"trace_id\":\"02184e7d-e5c7-4f45-8999-54d2309ac720\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:23:17] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9a215c7c-e855-46a4-9126-40f22d342a5f\",\"trace_id\":\"2f580cb0-fe8b-4d14-90cf-090d00e2509f\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64fdb6b8-375a-4ad4-b050-915f60f3d10b\",\"trace_id\":\"76a74336-b870-41f4-9787-1af873420c21\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d18643e-48b1-42e5-89a8-8e252db3c0b8\",\"trace_id\":\"777d5d01-53a2-4902-b312-a89348917eaf\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring start {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:09] local.NOTICE: Monitoring end {\"correlation_id\":\"567d2904-2d99-4b49-82ff-cbcbe9d1eba3\",\"trace_id\":\"d990607f-045d-41d1-9dcb-eda9fc8d2bfe\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b00dce1-5488-4c35-8cc4-533b3e221239\",\"trace_id\":\"33ba3132-c2ce-482b-92f6-1b854d5cb40d\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9479ae0e-eb24-4cd9-8fc3-08a5d5afcf24\",\"trace_id\":\"9942a9b8-9fd9-4545-bbac-be670ad0c059\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:22:00, 2026-05-11 11:24:00] {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a4aafea-530d-4a28-b8c0-b3587b47b105\",\"trace_id\":\"69372eda-94e9-4126-a644-ed498de5ab72\"}\n[2026-05-11 11:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b3d7ab8-67f9-45e4-afea-05f709f6b0f3\",\"trace_id\":\"286b618b-82b5-42df-b2e0-94c80f6c04be\"}\n[2026-05-11 11:24:20] 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\":\"bc30c028-bef4-47fb-9420-88571f097b0f\",\"trace_id\":\"3ad1ce39-473c-4b20-986f-a0de722b274e\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3f0764-70e1-49cd-bf5f-b1479eeb3720\",\"trace_id\":\"6e624cda-dc1d-4aa4-b414-0eb5db7f67e2\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9545d596-e9dc-4950-ba72-ecd5a0bde54f\",\"trace_id\":\"5571116b-5b8b-4267-a3fc-e329ab944d13\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring start {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:09] local.NOTICE: Monitoring end {\"correlation_id\":\"0afcb416-af01-427e-b164-c40e32cffeea\",\"trace_id\":\"fc4546f6-800e-48a9-bdc4-2d269e559d66\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d5689991-9d82-4295-a03a-b694b7ac093c\",\"trace_id\":\"f2f04177-1696-4f15-87de-c1f548ac9e90\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfb57410-d885-401c-9e42-b54fd60d1bda\",\"trace_id\":\"91a2f916-2107-4841-91b4-debba8f540a6\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15a826c1-0d26-451f-831b-59542a6de8bd\",\"trace_id\":\"9111c962-1dd9-4734-9bf7-67bef3b00b01\"}\n[2026-05-11 11:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74339c0c-f6c2-469a-876c-8a6f309b870b\",\"trace_id\":\"57bc9ab7-00d0-4195-b1df-6c17f6073ca5\"}\n[2026-05-11 11:25:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c91005c-c360-4c74-89aa-1b7c0e908865\",\"trace_id\":\"032d420e-12db-42ca-a172-2924788e0857\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:15:00, 2026-05-11 11:20:00] {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6207a193-64a4-4a14-a4da-0244e01a8d02\",\"trace_id\":\"94286bcd-ce54-409b-acbf-f05497e878d5\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:20\",\"to\":\"11:25\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:15\",\"to\":\"01:20\"} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aedd474-8219-4813-8aea-217bfc67d472\",\"trace_id\":\"ff6ce966-9c33-4aee-aa90-413efc6868ee\"}\n[2026-05-11 11:25:25] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] 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\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:26] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"987a75bc-a84b-45b4-808e-0ff39500f7a2\",\"trace_id\":\"f1fbdcb4-3f7c-4a52-8f63-440b3b2a7546\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:27:29.353081Z\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"133c5926-7f70-4923-a68b-55746832213b\",\"trace_id\":\"48acb135-ad29-4985-b592-0faaccebf2c0\"}\n[2026-05-11 11:25:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d4e1958-fbe6-4d66-951e-5c771b847fe5\",\"trace_id\":\"96d78d87-41be-4810-a79b-5470998dcece\"}\n[2026-05-11 11:25:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:25:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a99d73f6-411d-42b0-8c28-da9d1c933230\",\"trace_id\":\"2e817bae-0d3b-4e2a-95fa-e8b60230afa0\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aaaf82e1-db01-4dc8-8b3a-f9a9adb6f71f\",\"trace_id\":\"f994c3af-16b5-41e7-a656-6c3e8a080b27\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring start {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:08] local.NOTICE: Monitoring end {\"correlation_id\":\"061b98f3-e143-4719-a17a-3efd7afee74a\",\"trace_id\":\"b78da73c-6e65-443a-9807-4b2abfd60f3e\"}\n[2026-05-11 11:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c656bfd-6169-4216-b065-dbda07c0aa2f\",\"trace_id\":\"3fd2e5b8-413b-4664-aa1d-1a40c1f5a808\"}\n[2026-05-11 11:26:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd30ed6e-5985-403f-ab2d-2ad7b1be0e07\",\"trace_id\":\"ee460540-e426-41ad-aab3-ed7bec97987c\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:24:00, 2026-05-11 11:26:00] {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"635c6a57-9730-445e-99a7-db06ba33a420\",\"trace_id\":\"e787171a-c571-401e-8d98-e9a7db9246fb\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1471d927-3486-46c3-b314-b84b54c292a2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23366272,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:18] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":252.59} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":295.86,\"usage\":23450240,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48273eee-77f1-4f8d-bc74-cddb605a83f7\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23428168,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":16.64,\"usage\":23416176,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12dd4e4c-51c0-4fb8-88d7-6bb6a049a9aa\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23376928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] 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\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:19] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":6.2,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"b921c6a2-b5ca-4d11-b4e0-2f08ef01bae2\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23396472,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.53,\"usage\":23412592,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"3fc7effa-42f8-4728-89de-96d5454a0b40\",\"trace_id\":\"9b35def3-02dd-46ef-a4d2-c19f2605bc15\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"715ea288-5a4f-4ef8-9ba7-1a028e040dd3\",\"trace_id\":\"c4a8233a-1917-4b3c-a419-8ac7e4bc790b\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b26cf6e-025e-4bdc-8515-96b62ef1371d\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] 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\":183.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:25] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b0ec9af7-f57b-4ebc-87b6-7dbc78a96940\",\"trace_id\":\"2bbf0d9d-9953-4a75-9ca7-edd70428e670\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"8045d610-e06d-4c43-b050-c96719c041eb\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:26:27] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"f0ce8e22-59e0-46dd-b2c5-eedff340eb69\",\"trace_id\":\"f11769d8-5451-47c0-93e8-8159d4fae8f2\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"75156279-7be4-457c-9018-0ed5f2b71ece\",\"trace_id\":\"69ab8899-af88-4a59-aa9d-738e2a457aff\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"82543eca-07a5-4fea-b606-b3558eed2493\",\"trace_id\":\"e40912ea-8d3c-4efd-98f0-2a7cf164a747\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring start {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:09] local.NOTICE: Monitoring end {\"correlation_id\":\"e1534ea8-4244-4acc-912e-a3a60b346318\",\"trace_id\":\"b54370a0-ad08-4592-8b24-1e299f6253d2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9b5f04d-7de1-46a6-bbfd-7d801d83c969\",\"trace_id\":\"ae9ea732-d3a5-46a5-a90d-3ccdeb1d34e2\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d0630a6-5a05-4ba8-9e1c-667ff36e82e8\",\"trace_id\":\"d7fbe2e4-78d9-4165-9d02-62a411645dde\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6824064-9371-4a7f-9421-f13eb7a243e1\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:27:18] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4ebc2d2e-016e-41d7-974c-d8bd5e2273fa\",\"trace_id\":\"2ae1ddbf-db70-4743-8e84-9d9f892a7a3f\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b5b93da-8f8c-4e1a-a9f3-07c7c6be8788\",\"trace_id\":\"1f495c0c-6ebe-4b37-ae0a-b8277d650772\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ee35ed40-2d9c-4cde-87e1-77f73de19e99\",\"trace_id\":\"9583c234-22f4-40b4-b98c-ab29ada82cd5\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f5b44dea-1891-4f8e-9cc0-48af37bfc48f\",\"trace_id\":\"3c933285-dfbd-4491-81d8-301b28104d23\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dbe716f-ac8c-425b-9f5e-098d751a070a\",\"trace_id\":\"b3e590b5-923a-4e54-a004-6076a8ac4eef\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5df1e38d-7d8f-445c-a127-f4c0f0536d9d\",\"trace_id\":\"727bf834-a59f-454c-bf47-4c802195e493\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:26:00, 2026-05-11 11:28:00] {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7494e56-e956-4ffc-affe-2a5c582aebfe\",\"trace_id\":\"6ac1061c-4a2a-462c-b9df-feab95ed9a09\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.NOTICE: Calendar sync start {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"158a2c16-4980-46f8-9618-8cb297bb1ebb\",\"trace_id\":\"c44b3725-52b3-4c11-8ca9-fc920753fba4\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] 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: d110f131-9860-4d7e-88b3-e8530bbb2300 Correlation ID: 2c4331a5-6504-47c7-b060-bd5387180980 Timestamp: 2026-05-11 11:28:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:21Z\\\",\\\"trace_id\\\":\\\"d110f131-9860-4d7e-88b3-e8530bbb2300\\\",\\\"correlation_id\\\":\\\"2c4331a5-6504-47c7-b060-bd5387180980\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] 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: 1c37dfe7-6666-43cf-8fd8-3a87fce32300 Correlation ID: 24510f33-56ce-4087-8169-ecf9d861bae3 Timestamp: 2026-05-11 11:28:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:22Z\\\",\\\"trace_id\\\":\\\"1c37dfe7-6666-43cf-8fd8-3a87fce32300\\\",\\\"correlation_id\\\":\\\"24510f33-56ce-4087-8169-ecf9d861bae3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] 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: bb896323-6a97-48d4-bb3d-500f7b1d2000 Correlation ID: ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e Timestamp: 2026-05-11 11:28:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:23Z\\\",\\\"trace_id\\\":\\\"bb896323-6a97-48d4-bb3d-500f7b1d2000\\\",\\\"correlation_id\\\":\\\"ba707c5f-8f7b-4890-9dd3-e5d0e6f0133e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: f1ddbfc1-909b-4659-8661-99d8ba932300 Correlation ID: cddc65c1-7281-49cf-851f-e1b9103ca9bc Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"f1ddbfc1-909b-4659-8661-99d8ba932300\\\",\\\"correlation_id\\\":\\\"cddc65c1-7281-49cf-851f-e1b9103ca9bc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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: 15b968ac-ade9-4993-b2db-272c0cfb0700 Correlation ID: 2e83270b-54ef-4a9a-85d2-d579994d2823 Timestamp: 2026-05-11 11:28:24Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:28:24Z\\\",\\\"trace_id\\\":\\\"15b968ac-ade9-4993-b2db-272c0cfb0700\\\",\\\"correlation_id\\\":\\\"2e83270b-54ef-4a9a-85d2-d579994d2823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] 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\":\"4e6b0159-2cb1-4cd3-a131-dab75cc7716d\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28504eaf-846b-4473-b606-68d2725a7562\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] 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\":\"fcb3d942-0c58-49d5-960f-80a2b4916ce8\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:27] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:28:28] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"e0caf59f-ef2d-4d7d-b8d2-548cc5aedb07\",\"trace_id\":\"e67f76da-5da7-4f90-8224-3a2dbc72d27b\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab4d1d36-5cda-4a0d-9bce-397e37640510\",\"trace_id\":\"5cafc2a4-1917-4a26-bcb7-7d09815a8113\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"398335bc-9558-4e78-a470-303347e5cb07\",\"trace_id\":\"228e4d51-9626-4a21-9219-341a10a72134\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring start {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:09] local.NOTICE: Monitoring end {\"correlation_id\":\"ab8bbff9-92b2-4ea9-9144-7c73e59a2512\",\"trace_id\":\"d9383e1a-aa30-49f9-929e-ba549279f46c\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71f7d896-3e71-4734-bf0e-bbf50c0b3d92\",\"trace_id\":\"ab6b38fc-861f-468b-8650-768b2764d057\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:29:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83ee973b-76b5-4968-9c7e-fc24ea70371c\",\"trace_id\":\"23470df3-fb69-43c4-8c46-01d45d8e9156\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3dfec64a-7673-425f-a93a-4dac1ba6e711\",\"trace_id\":\"76e0e1b0-8958-41e3-b48b-cde7f534b0e1\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d9e21c1-a3da-4bcc-a739-92731d054be7\",\"trace_id\":\"2b3b0026-4b4a-4209-87bf-f377593c3f05\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"74a0e37f-fe37-4186-a3ea-aee5d038d66e\",\"trace_id\":\"fb3c6bdf-ae20-4895-94d5-a233a112ac45\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c0f05cd-74ed-45d1-bd8a-08c28c62de8b\",\"trace_id\":\"bce86ae5-b821-4c5e-b241-7d94012b40d3\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"87a037b4-d5c3-4475-837b-6e1be374ddb6\",\"trace_id\":\"ae9d9811-c79a-458c-b4c4-e61103e37d4d\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:28:00, 2026-05-11 11:30:00] {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: [conference:monitor:count] Push to Datadog jiminny.conference {\"activity_id\":432231,\"activity_status\":\"failed\",\"company\":\"jiminny\",\"provider\":\"google-meet\",\"timeframe\":\"(2026-05-11 11:28:00, 2026-05-11 11:30:00]\"} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c962d8bd-b520-4477-8061-bca021082da4\",\"trace_id\":\"7fe69df2-ffbf-4a09-bbb8-4b25c7f6cb42\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ddf867bf-61ec-4e6a-b8c3-d50c64f89aa9\",\"trace_id\":\"6ec5e944-6b80-4fdd-9ba4-e8f529dc4568\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9476012-6e8c-4b8a-909c-c3634b065ce2\",\"trace_id\":\"da25f065-14ea-4d45-a389-791cb1963997\"}\n[2026-05-11 11:30:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b0a13fc-f608-4aa8-a537-b3cfa54f28d2\",\"trace_id\":\"5167771a-0f8a-4a68-bbd1-d4c6db4c5ebe\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:20:00, 2026-05-11 11:25:00] {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4809e333-be69-44e0-ab39-c551c37b49f1\",\"trace_id\":\"d255198d-2929-45be-abae-52c5bb9db4bc\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:25\",\"to\":\"11:30\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:20\",\"to\":\"01:25\"} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"572da9a9-932c-44ab-bbea-38b3ad498b62\",\"trace_id\":\"47ccc1e5-0df6-4a99-a4f9-e3384e909889\"}\n[2026-05-11 11:30:42] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] 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\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:43] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ee757e15-f88c-410c-9dfd-7ca7e954f174\",\"trace_id\":\"e26657e9-b855-42cf-8ffa-b610a94172cd\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:32:52.138967Z\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c918475-da47-4160-b989-8d55979401f4\",\"trace_id\":\"7bf6040a-aa3b-48cb-a569-8a3896ed9fb2\"}\n[2026-05-11 11:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81fd74c8-2c4b-4d38-89f6-77ac8905c741\",\"trace_id\":\"de02a777-afa7-432e-8d00-6000cf4529a1\"}\n[2026-05-11 11:30:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae93d9cd-cae3-4bb6-af7f-b919fa377861\",\"trace_id\":\"e265cbc6-32d8-4351-a78d-644d0f37f7e5\"}\n[2026-05-11 11:30:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812707,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812708,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812709,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812710,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812711,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Dispatching activity sync job {\"import_id\":812712,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55c98953-bdea-4594-a81d-05ec9158a6d1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812707,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"cc016559-47de-4a5e-a8a2-5010ad7caf36\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812708,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"04b1aa54-2281-48f0-989b-ec987b644c73\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"081ec933-31e4-4201-b09f-4787fc648543\",\"trace_id\":\"c2c221a1-2399-42d1-97e5-b87b76c487bf\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812709,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bb4ced39-a1b6-4bdd-a927-4a4b5961bbcb\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812710,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"958b63ab-aafc-42ef-afc4-2e3ed37426b1\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.ALERT: [SyncActivity] Failed {\"import_id\":812711,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3eb4e8b0-bf7d-43ee-ab5e-defcc50b92a2\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc765491-1a8c-40e0-b742-a6508a4e90e0\",\"trace_id\":\"f182b9ea-f9bf-43d1-b628-81ed882e1df8\"}\n[2026-05-11 11:31:04] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:04] local.INFO: [SyncActivity] Start {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:14:00\",\"to\":\"2026-05-11 11:30:00\"} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] End {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:05] local.INFO: [SyncActivity] Memory usage {\"import_id\":812712,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25934592,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"fe7d208a-48e9-40b3-94c1-c03d605e717f\",\"trace_id\":\"c91d47ea-0e6a-4240-9126-8869bfe44c0d\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"76b7f7ab-a127-4c84-926f-58ef6363dd27\",\"trace_id\":\"11f1ef21-fcdb-46af-b034-b906890c8b78\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31b81e1d-353d-4ae9-8cea-f1cb64e1afac\",\"trace_id\":\"874a5b86-6c77-4f05-8358-25d91a76e358\"}\n[2026-05-11 11:31:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] 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\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:31:48] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"19a9f55f-344c-41fc-9a24-4809004a0dfe\",\"trace_id\":\"38755cbd-4512-4605-ad38-493563300576\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"833f4f8b-8127-4454-b373-4b8212e284de\",\"trace_id\":\"144f4d20-e8e2-4ccc-b28b-8a76e30a3cd0\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2b69631-4e5e-49cf-aa9d-b98c4537202d\",\"trace_id\":\"b11af75c-ee3e-4c7f-98a5-129a6bd30853\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring start {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:28] local.NOTICE: Monitoring end {\"correlation_id\":\"4a20a6c2-381f-400b-8e3e-b299d251cf2a\",\"trace_id\":\"b9c4ed2d-d650-465c-af65-add0679d2d3a\"}\n[2026-05-11 11:32:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f73dd268-ee34-4bc6-95d7-bcce0b5765ab\",\"trace_id\":\"8cc81570-d909-4ac6-9727-3e7861260950\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9d618ed1-a6ef-478d-98cd-db5c37094ec3\",\"trace_id\":\"cc9f9c1a-7863-4117-a9de-0ebe1442b605\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:30:00, 2026-05-11 11:32:00] {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3d14cd7-283a-4134-89b5-ef93171ed27d\",\"trace_id\":\"358aed33-3416-4a08-bb65-fc9837710d80\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9b993ee8-2d09-4d30-8202-30bdccb8e131\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:32:45] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"eccafadc-d0ff-4197-8a61-fdffedebe8a0\",\"trace_id\":\"894c6598-be21-4753-8074-35885ec0b344\"}\n[2026-05-11 11:33:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c5bc7f30-e3fb-4263-8dee-2b9d8bb2b0a5\",\"trace_id\":\"e6eb4572-8cee-4ef8-9f3b-c5c94e01ffd5\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15067ad9-0ac9-4899-964c-162f02e7f410\",\"trace_id\":\"2962fdf3-0b0f-4379-8f07-ff1457245422\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring start {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:15] local.NOTICE: Monitoring end {\"correlation_id\":\"091dbefd-e9da-49b4-834c-37e0005e080b\",\"trace_id\":\"94cbb97f-4b83-494f-8403-0f68bb5e9529\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cea4337c-5e77-4e26-a35f-e19700c6541a\",\"trace_id\":\"4aa67dd9-e193-4ff7-9cd2-a4f3afdd81a6\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eff6429-116b-4507-b74c-abccfcf32241\",\"trace_id\":\"11b1ac9e-2397-4eef-9020-405ab0a96d26\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:33:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd1df744-9be2-4b6b-958a-d7837267bae7\",\"trace_id\":\"3bdd6871-dd44-421f-be94-913ccdd95198\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f56a188a-615f-4573-aa99-4cdc382a41ec\",\"trace_id\":\"10d5dd3e-2384-49f2-817d-debefd5d63e7\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8dc3021b-34ee-4c1d-aa2d-7eae23b7416c\",\"trace_id\":\"054c38ee-b1a6-4e5a-b26d-b78fdc977580\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring start {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:15] local.NOTICE: Monitoring end {\"correlation_id\":\"fbb85f01-d3e9-470c-b13b-335347bec433\",\"trace_id\":\"92f550b4-50a5-44ae-bbc0-92e286d2f393\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36f69f07-dca5-43c4-9a0b-f63459c5911f\",\"trace_id\":\"ea3668fe-a7a5-4871-ae75-560ac8af134a\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99016640-1f4b-4651-af58-c13927850c9c\",\"trace_id\":\"b3ac58e0-76ea-4694-b2c1-4d0d738621aa\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:32:00, 2026-05-11 11:34:00] {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:34:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ec7157d-7b72-4a5c-a471-d4405ef1a6d6\",\"trace_id\":\"3dfd961c-9916-4ba2-b1ec-829f497c99dc\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e49ecc8-1786-45e0-9b12-4b2b72351af7\",\"trace_id\":\"8cd3a4be-4f04-4dc3-afda-fafbffed47fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"154e23cd-63ba-458d-ab76-731b4b41a300\",\"trace_id\":\"b69059d0-74c3-4e9c-a6f2-6e81597171fe\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring start {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:17] local.NOTICE: Monitoring end {\"correlation_id\":\"806af418-1f84-43ab-889a-e6d4718331ad\",\"trace_id\":\"523e39f9-8535-44c7-b476-2d2d901ef261\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dd7516d6-890e-49f1-8b1e-ebdcac563a95\",\"trace_id\":\"5e3bc94f-e5b3-41e6-a41a-7430e9fac1ff\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81f9972f-f529-4ccd-b06e-3430d756eb83\",\"trace_id\":\"27d99d0b-f2f7-4b81-a804-3bc9a5a30d8a\"}\n[2026-05-11 11:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aec05013-dc68-4fec-a9db-dc408d027301\",\"trace_id\":\"bb1dbfc4-61f1-4f3c-8002-5b63531bcb70\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3cf66e8-9c66-49a1-b8ab-f612b21ea566\",\"trace_id\":\"13710306-1983-4e67-85cc-01ee00846871\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78d0f0b4-6df5-440f-aef5-503af540bd8b\",\"trace_id\":\"29dc33ab-36f4-428c-916d-15c687b7a5ab\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:25:00, 2026-05-11 11:30:00] {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: [conference:monitor:start] start ok {\"activity_id\":432231} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf501225-1da6-4535-82d4-93fb6a3203d9\",\"trace_id\":\"d9c8b814-53ac-4f4a-8970-b6dc8f05cd6f\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:30\",\"to\":\"11:35\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:25\",\"to\":\"01:30\"} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9268b305-57d7-4cdc-9676-5643e26095d9\",\"trace_id\":\"e3c95e4d-8d20-47f2-a27d-21e3945c24ed\"}\n[2026-05-11 11:35:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] 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\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"b8292706-1dcd-4072-b788-b5c374fd4c9d\",\"trace_id\":\"70fd23fd-05e6-4af7-a3f6-2add924c585d\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:37:57.588121Z\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7c9d05d-5879-4737-9b04-586f72c6b8f9\",\"trace_id\":\"166b9455-ab09-43c2-a9b6-daa2d1360d81\"}\n[2026-05-11 11:35:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bdbc5b77-c5de-4aec-822c-ee6537449481\",\"trace_id\":\"fd9db7f0-b1c9-42ff-ba02-5afa64debd65\"}\n[2026-05-11 11:35:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:08] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed64c2dd-996e-4266-8af9-a1f391071bea\",\"trace_id\":\"c96ce0e2-d04c-4b01-bcf1-47d6fe7b4e56\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"435378ce-9096-4a0b-8445-944ba0ca771c\",\"trace_id\":\"3002214c-eba1-4ad9-a0bb-4452c1f69af2\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring start {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:17] local.NOTICE: Monitoring end {\"correlation_id\":\"cc89edc0-e903-448b-a83d-7ebfa770789a\",\"trace_id\":\"65b8c9fc-b1ac-4fcd-b138-d1af4b14c1f0\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9dc85070-9dc1-4821-9b21-bf71cb4a35a7\",\"trace_id\":\"6288c472-dd35-476f-ad35-d1988f54255e\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab75325d-90d5-4192-900b-a28f0601c7a8\",\"trace_id\":\"92f2899a-35ba-41f7-bdb8-7f2cd7b4e7d8\"}\n[2026-05-11 11:36:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:34:00, 2026-05-11 11:36:00] {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"23455c29-95de-4465-96d1-a105422a3e6c\",\"trace_id\":\"9a1665bf-e44b-4301-911f-bcb548e82b31\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19151979-e90e-4527-9061-2fd0280024f3\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23373304,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.52,\"usage\":23438968,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"26f50693-857d-4948-95b5-e5b3faae1267\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23397184,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] 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.26,\"average_seconds_per_request\":0.26} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":266.37} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:26] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":307.04,\"usage\":23461536,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4579e24d-7300-4765-b5e6-a8d1e75436d8\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23439464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.69,\"usage\":23423888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"48369349-9d95-4a19-8793-f3809c7a1b59\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23384528,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":11.74,\"usage\":23427472,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"afb4923c-7862-47d2-a140-646a189f5ef4\",\"trace_id\":\"63932467-31c2-4871-9144-4ce924d22ae7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"654e753f-abcd-464d-a51b-b358ecba4ff9\",\"trace_id\":\"1bc4a51a-0961-4402-a6d5-99f8278f1dc7\"}\n[2026-05-11 11:36:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14930b5-bee0-44a4-8383-15d87eaef035\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9177aaae-38d8-46b4-9340-f9942a57fa45\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:35] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"877bdb5b-1232-47ca-9e13-e1201b0523fe\",\"trace_id\":\"41361dee-7237-4377-8dd6-961525696b41\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] 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\":211.8,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:36:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"97a527a8-f15a-4069-b68e-682eb124a293\",\"trace_id\":\"cb4cd9e1-6d6d-4209-83c2-830bd85f46d9\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"15940138-e7f5-472c-bec4-e594219fb191\",\"trace_id\":\"418d8346-03e7-4433-8826-f2ec96496fdc\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ca920bb-7b15-4229-b3fe-a1445e67b199\",\"trace_id\":\"96f700d1-45ac-41f3-a456-dd767f406c18\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring start {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:14] local.NOTICE: Monitoring end {\"correlation_id\":\"2192742c-a038-41f8-82e0-78559fcc76db\",\"trace_id\":\"8bba3861-e7af-4a44-a2a0-b05937422aa4\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b3be6fa8-dd5d-4f0c-97fe-ecea4ab529cd\",\"trace_id\":\"86ee318b-a230-4ab5-aae3-73adabf4cfbd\"}\n[2026-05-11 11:37:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4983de8a-ee3f-46a6-aeed-7cf59e42a336\",\"trace_id\":\"c1ad61a2-c56f-43bf-96eb-24c50ab079af\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b1f5285-ab6d-4008-b9eb-8960734e12c8\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9901dba9-6b69-44eb-acdc-7a2246f82419\",\"trace_id\":\"60276151-6edf-4040-b81c-9465a81a92dd\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69d41df6-224e-4db9-ac05-88ac705ee741\",\"trace_id\":\"c05a2a81-4e1a-4f0b-8b4d-32a60d9816e1\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5db27930-2b5a-4b84-b25e-1e3b43ea8add\",\"trace_id\":\"6cfecb02-c968-4473-b540-030e0f5b744d\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a69e46bc-2365-4966-9e37-a99fd1aecd4c\",\"trace_id\":\"b2505494-12ca-4339-bbf7-c7213045c9f0\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring start {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:17] local.NOTICE: Monitoring end {\"correlation_id\":\"231a58c6-2a59-4241-a3b9-3b9bdd2fa3a1\",\"trace_id\":\"05429fd5-b419-421b-afe8-18d7a4fd5ae9\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25e36035-000d-4b58-bfe7-b1ecdbed7c9d\",\"trace_id\":\"5fe4eb1c-1c67-4f96-8900-1339cb81ee53\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7feddd80-ff43-42a0-b95d-5ee3b61d9433\",\"trace_id\":\"2bdbef46-33b1-4c1b-a406-3a853e4ccb67\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:38:00] {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf157a8b-6992-458e-a3dc-facc18787856\",\"trace_id\":\"ba532c9a-ea58-492d-b1ed-293ae6ca7151\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a38ca8d1-f920-4af0-9ead-2c999788a762\",\"trace_id\":\"7f7c276e-3d0c-4337-9b91-60a46e249027\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e334af78-eaf1-4b5a-82f9-8007826916cc\",\"trace_id\":\"13cea870-aff6-44e1-8e89-202cd0626e30\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1eb788-cc37-4ce8-b25e-60834ccbbaca\",\"trace_id\":\"2df49960-6038-4cc1-9e8f-2add7b626f67\"}\n[2026-05-11 11:40:35] local.NOTICE: Monitoring start {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:40:36] local.NOTICE: Monitoring end {\"correlation_id\":\"40e335c4-fd85-4f54-9281-291fe298424c\",\"trace_id\":\"b0f17a56-f2d5-4cd6-96cb-1209490ac7fe\"}\n[2026-05-11 11:41:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"243d35a2-60a2-455d-81d1-f8e7f254ff49\",\"trace_id\":\"9052ee8b-33de-46ec-96bd-a5a6680680fe\"}\n[2026-05-11 11:41:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:41:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"979a8201-55ff-4c48-bfb2-975d3fa8ef5c\",\"trace_id\":\"3d33eea6-2425-4eb8-9e74-596294d88208\"}\n[2026-05-11 11:42:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1dc1f40a-b4a2-434d-b98a-2f0776bd58d7\",\"trace_id\":\"e83849b9-f2e9-4352-ad13-d5c2ed894982\"}\n[2026-05-11 11:42:54] 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\":\"5446fc92-2300-4510-9863-048fe06a4b98\",\"trace_id\":\"87a50f74-91ab-47ee-9742-41f64dce94a7\"}\n[2026-05-11 11:43:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fda720c4-f0f8-4e70-9807-542d7728a21d\",\"trace_id\":\"7f3371db-65a6-47eb-9e1d-c45bdc19039c\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:43:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d0158f2-88fa-48ce-b393-2da5e099e6cf\",\"trace_id\":\"6b08733f-64f2-4f39-90f8-38c47ffd7e71\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring start {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:05] local.NOTICE: Monitoring end {\"correlation_id\":\"8f83f2bc-49c0-4073-8bc2-5c7dc756fc9b\",\"trace_id\":\"825d4830-4b62-47b5-9e4f-4f05a8e99fa4\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f3e633b-60fe-4b1a-b53e-aeaaee6d9872\",\"trace_id\":\"96fee333-6840-448a-bf31-19f1cab1aa31\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7f214f2-1b36-4ba2-be0a-a0b132e19301\",\"trace_id\":\"840bfd9f-efbb-458c-89e8-feb1c60fe6d8\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.NOTICE: Calendar sync start {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb9a211f-a3bf-4708-9e02-493a1d3eaa44\",\"trace_id\":\"bd6c38ac-801b-4fcd-9ef2-770c931e2cd9\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:41] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:42] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] 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: 320c5112-8012-438e-b59e-3160637c2400 Correlation ID: f87caf33-b771-4e58-8916-9df89ee13b6a Timestamp: 2026-05-11 11:44:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:46Z\\\",\\\"trace_id\\\":\\\"320c5112-8012-438e-b59e-3160637c2400\\\",\\\"correlation_id\\\":\\\"f87caf33-b771-4e58-8916-9df89ee13b6a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] 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: d629ca21-3ca7-44b5-9e49-1c8fdae61a00 Correlation ID: 18de3690-3388-4539-8f6f-fd2f9897cd34 Timestamp: 2026-05-11 11:44:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:47Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8fdae61a00\\\",\\\"correlation_id\\\":\\\"18de3690-3388-4539-8f6f-fd2f9897cd34\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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\":\"b0ba3c55-b39e-4817-9aaa-10ce829bb673\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] 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: db10007a-f935-4410-8801-fe3fc7f41f00 Correlation ID: 67f4abc0-cb40-498e-b741-6a92d8168e42 Timestamp: 2026-05-11 11:44:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:51Z\\\",\\\"trace_id\\\":\\\"db10007a-f935-4410-8801-fe3fc7f41f00\\\",\\\"correlation_id\\\":\\\"67f4abc0-cb40-498e-b741-6a92d8168e42\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 0d350193-c2af-4281-a07b-54de5efc2100 Correlation ID: e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"0d350193-c2af-4281-a07b-54de5efc2100\\\",\\\"correlation_id\\\":\\\"e3aad26c-d360-4a7c-84fb-4aa3bd7e1d3c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] 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: 2141a1b8-550b-4342-802b-5f2cc50c0100 Correlation ID: 6e94803a-2f67-4141-8893-d697e6158fef Timestamp: 2026-05-11 11:44:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:44:52Z\\\",\\\"trace_id\\\":\\\"2141a1b8-550b-4342-802b-5f2cc50c0100\\\",\\\"correlation_id\\\":\\\"6e94803a-2f67-4141-8893-d697e6158fef\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"977b39c6-3da9-4d52-a5be-429dd70f580f\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] 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\":\"3c272c6b-1fda-44e0-84f4-d30b755533db\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:44:55] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"90bd563f-bdb0-4222-aa3d-1aafaba59b82\",\"trace_id\":\"dbc5431b-03a4-4f2e-bbed-8b6d1c1554ef\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e38cc330-c508-40e3-aae6-4886ac685e84\",\"trace_id\":\"7d3d16ad-2140-4b32-81ed-7d79adbaaa27\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92dd58e9-61aa-4f82-88d3-4a75a2bb37fa\",\"trace_id\":\"3e36a4da-9bba-4512-9b9f-94ec5f45d7fc\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring start {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:27] local.NOTICE: Monitoring end {\"correlation_id\":\"663c42a6-b97e-450a-aa0f-d6fef8588b9f\",\"trace_id\":\"850c5ae3-dc61-46d1-b7c4-0488f2ff1915\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33fe17ca-a4e0-4873-9491-55e4622fa5c3\",\"trace_id\":\"9d6f0bd9-6599-4086-a97d-ad6d4b1aa9d6\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b41595aa-55cf-4c06-8c4f-848c8f357074\",\"trace_id\":\"e209cd3a-b5e8-451c-8b95-0118333fafc3\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baa504e2-e879-4ce1-8918-7d0d096d7a0c\",\"trace_id\":\"4642c955-721c-46eb-ae85-71980708bca5\"}\n[2026-05-11 11:46:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9aa7b716-b86d-471f-80fb-5c8a86342d9f\",\"trace_id\":\"f2324492-31c2-4bd2-9e85-dedc6316d313\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4daeead-81f8-47c2-845d-8f633b42fa1f\",\"trace_id\":\"88b9994e-1ec0-42f8-b302-e9a78f56dc27\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:36:00, 2026-05-11 11:41:00] {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e51507c-a336-4a6f-8a13-0eec091277f2\",\"trace_id\":\"05c8c900-8947-47e0-a810-f3307a965b01\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:41\",\"to\":\"11:46\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:36\",\"to\":\"01:41\"} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9815217-198c-4a8b-bf0b-9964a9dee30a\",\"trace_id\":\"cc9a27b0-4d08-4ef5-931e-ca23eff1fcd1\"}\n[2026-05-11 11:46:35] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:36] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] 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\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:46:37] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d7252595-d0db-48fc-b018-b6227114d9be\",\"trace_id\":\"a79194f0-69e2-4629-b31c-4adc72e75e32\"}\n[2026-05-11 11:47:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:49:08.763532Z\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:08] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63c9aa75-5054-47c9-b90b-5153ad65c835\",\"trace_id\":\"1a57fc61-b204-4ea2-9338-b7e464153d01\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:16] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812713,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812714,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812715,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812716,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812717,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Dispatching activity sync job {\"import_id\":812718,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7a451157-281c-400a-871f-0a244fc3a0fc\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812713,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"8f6a7583-48c6-4fad-8aa2-396bec4d1ac9\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812714,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8701651a-9c9f-43f7-ab16-43fdabb4fe9a\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812715,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fae9a9af-cde4-4223-9c3e-af29f4a77e21\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:26] local.ALERT: [SyncActivity] Failed {\"import_id\":812716,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"051769e8-9372-4626-af41-b97aa2087436\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812717,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d90955fe-5897-42e4-903b-9b0aba6554a4\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [SyncActivity] Start {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:29:00\",\"to\":\"2026-05-11 11:45:00\"} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] End {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:28] local.INFO: [SyncActivity] Memory usage {\"import_id\":812718,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27215288,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"2cb89553-59d3-4a35-9941-478a398bee15\",\"trace_id\":\"a6a99752-f599-410e-a775-51a9b8fd88ba\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e054b8f-07c0-4071-8abb-21684b2bde94\",\"trace_id\":\"8ffdf755-0bf8-44fb-9a3f-6b0ae0f6bd19\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33022db2-def5-4ad3-8403-5d77b37398b6\",\"trace_id\":\"b87f95f5-1a4f-4aa1-9f97-38e0018a8dd0\"}\n[2026-05-11 11:47:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"033e2297-cd6a-4dae-8867-50537224ae07\",\"trace_id\":\"7b904123-009f-4561-a9eb-ab994d7dcc1b\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":688.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"55d77d79-bb43-40a9-940d-81d127d94c0f\",\"trace_id\":\"bcdaa1b1-0af2-4588-8b9d-058c36d0a02e\"}\n[2026-05-11 11:48:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a1dfeed7-9d48-4036-a76d-200217298586\",\"trace_id\":\"ea05e5ac-118c-41d6-a8a9-bd374af8202d\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53fb4ea-1be1-40fb-9c37-a7b259bf1454\",\"trace_id\":\"7479d30f-36c7-40e1-8d87-af8f104f2437\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring start {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:45] local.NOTICE: Monitoring end {\"correlation_id\":\"93519b60-0442-45c2-b99a-56b071f58cf2\",\"trace_id\":\"44a33d1f-5133-46df-b737-f9eefbaf7c88\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"300727a0-a73d-4de4-a9d7-819ab867f991\",\"trace_id\":\"2252d3c0-1d34-4763-9128-58c12b77fa53\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:48:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72d684df-1194-4e2d-a4c3-b3a9dad1eb1a\",\"trace_id\":\"2b8f69a9-d506-483a-8ea5-baa2a8a01c55\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:47:00, 2026-05-11 11:49:00] {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f11b5a06-1a7e-43bf-b3ae-96c96293ef40\",\"trace_id\":\"5cd59384-c100-4485-9874-f8807e7e3df4\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:49:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb074790-b132-477a-b86f-58a83a3522e8\",\"trace_id\":\"53da29a1-501b-4940-ad77-35578829fe8b\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"948b1a87-f11c-4810-856d-88f7ecbc9f62\",\"trace_id\":\"726b7391-0b3b-4874-a900-342de171d282\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1c1ffbf8-a63d-4355-86a4-9ebaf0fb9888\",\"trace_id\":\"893f6a4b-3f1c-4305-b32c-b8841586a2e8\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"d68167e4-72d5-4891-98b2-62563f9d5c56\",\"trace_id\":\"34397c79-70c4-4231-9c85-99520d20fbd9\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c82850cb-0f52-43fd-a003-663a3a84ebfc\",\"trace_id\":\"73ca810d-08e4-40c8-b66c-0d5f75d2370f\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0a157432-1be8-4d23-8d59-c0162ce2d34c\",\"trace_id\":\"437bc905-f34e-4409-8ffb-0b0606fe297a\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:48:00, 2026-05-11 11:50:00] {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64058b5e-eddf-4aa5-87c1-f739b83fa9a2\",\"trace_id\":\"31af6a92-5010-48f1-8064-a00ce23c0137\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99b2e202-0a70-4675-892a-4dde6d68e1a4\",\"trace_id\":\"049ee7b4-462b-4ced-bda3-6364e78364e4\"}\n[2026-05-11 11:51:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"431e4cfd-4f74-407f-831b-f4c991315d07\",\"trace_id\":\"c4bd1cb5-916e-4e7a-a398-99a20270bf50\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f998d202-c63e-405a-acc5-6860b64e7338\",\"trace_id\":\"37b6a9e9-6ce9-4656-a648-4da8fe55e995\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:41:00, 2026-05-11 11:46:00] {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6123d3aa-f7ef-4864-9612-004c9ba3bb8d\",\"trace_id\":\"3762ceb6-9587-40a9-a6e5-a675c8c77901\"}\n[2026-05-11 11:51:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:19] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:46\",\"to\":\"11:51\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:41\",\"to\":\"01:46\"} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be92874d-e8cd-4919-a534-3f5431755d19\",\"trace_id\":\"80813f0f-16c1-48d7-b8b1-d166005d73e4\"}\n[2026-05-11 11:51:23] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] 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\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:25] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2b3e8d0a-a7b4-4d95-93e4-9e08f74e4937\",\"trace_id\":\"bd3e7ebd-d397-41cc-b2a0-703b4cf963eb\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T11:53:38.779331Z\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb8a511e-068c-45af-b635-ac8825209435\",\"trace_id\":\"f8b214b0-22a9-438c-b4dd-292b2f7d2f6f\"}\n[2026-05-11 11:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d35eda20-ab1d-4412-a5f1-870191e525e0\",\"trace_id\":\"55e96dc7-35b2-41c5-9a6a-2f2a57b7ec40\"}\n[2026-05-11 11:51:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:51:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"473b59f1-3db0-46a9-b1eb-4f231b9b4683\",\"trace_id\":\"8f56faf2-0cc2-4634-a1a5-fa1aa09f09ae\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:51:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b067fcea-7b12-47e2-96b7-debd8c85854b\",\"trace_id\":\"8736db6b-7fb2-4229-86ca-d5f66b016c94\"}\n[2026-05-11 11:52:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccc7883a-47a5-4451-86a9-ae6ab6012158\",\"trace_id\":\"a1397d4c-59cf-4fc6-9d64-30d03438dbc3\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a5002c8-53b1-4eef-9bf0-fffd89a452bc\",\"trace_id\":\"c9caa5c7-fb4d-4f62-ad23-9159676d207f\"}\n[2026-05-11 11:52:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:35] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":284.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:36] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a75ee2d8-c0bd-4a6c-bcf6-1d22861c4e5b\",\"trace_id\":\"c7feca3b-ca5e-4d0a-ae3e-862b35f1f9c7\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring start {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:40] local.NOTICE: Monitoring end {\"correlation_id\":\"41f4032c-b800-4605-8e4f-cc2b2a236dd8\",\"trace_id\":\"5eead9ab-785a-45b5-b164-792552ed7d5e\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"919137f6-4bd2-4b7f-9543-7dbb51d37225\",\"trace_id\":\"63a03498-5bfe-44f7-bfd6-39f5fe9cb446\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:52:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80abb28b-1ae5-4ddf-b3a0-29dd7b518b3d\",\"trace_id\":\"8f380427-1917-4899-9f48-5278a351b6bc\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:53:00] {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0551462f-4c73-42cc-aef2-4148444e9968\",\"trace_id\":\"f51275fa-b671-4b4b-8804-186bc54d1c8b\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9da60bcb-f79b-4649-b92a-d99ca12f84f0\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1f16ecff-92c2-46ac-9f10-80231fcc8d49\",\"trace_id\":\"748948b9-ac41-4a57-bd03-1d5e2c618890\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:53:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"372e28c3-dc3b-43cf-955b-5fae52524648\",\"trace_id\":\"35c6bc36-3f59-4b8e-8ba6-30a6455a0115\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a04ad212-85fa-40a8-95c6-f908e7ad2b5a\",\"trace_id\":\"055e7151-279c-4557-913a-fec6454c8d25\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74a6757b-1136-490a-b1fd-ad8809453847\",\"trace_id\":\"58060cde-a95a-4cc1-bd60-18ffcb3ec911\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring start {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:17] local.NOTICE: Monitoring end {\"correlation_id\":\"aa3f450c-3713-4244-a75a-b99412ebf8a1\",\"trace_id\":\"7a5ba32d-498d-4c7e-97a0-0446c1207147\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7006cf20-a853-42e7-b446-f41a7553e59c\",\"trace_id\":\"a7255ec0-f5e4-43c5-b553-3e451503e9fc\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65bf742a-ee36-4468-84b6-9f0ae8ca1ff0\",\"trace_id\":\"437f8439-cbaa-4c2b-8530-c3f7bd465f5f\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:52:00, 2026-05-11 11:54:00] {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0542c01b-860d-44be-a510-390ccaae53c0\",\"trace_id\":\"fcda0b7b-e07a-4968-8455-9128c1a76c71\"}\n[2026-05-11 11:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:54:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b87a7f5-f19a-4462-bcc2-ead15cf51c91\",\"trace_id\":\"668da8d9-e001-4b9d-ba52-fd4c35dbb12f\"}\n[2026-05-11 11:55:00] 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\":\"0686e366-cdc8-491c-aed7-62c0de9ab173\",\"trace_id\":\"abd378bf-f11b-4d85-9ce2-61a7440daf0a\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5b653383-846c-49e8-9ccf-2d5eacbf9952\",\"trace_id\":\"c3550546-1e58-4ca7-8796-1e0125f39e82\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2f166d72-fbae-48eb-b27e-0287769d662c\",\"trace_id\":\"770bc4fe-999d-4602-b909-b6617892800b\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring start {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:15] local.NOTICE: Monitoring end {\"correlation_id\":\"5753ad28-7d1b-4cfc-9b05-46eee7c4fa5a\",\"trace_id\":\"69b37dcd-0265-4dbd-8741-d63ce1bda1d1\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1beb4554-6ea0-48dd-8fdb-40508aea8667\",\"trace_id\":\"259709ec-e8eb-44ef-ad15-e5bf15e18bdb\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"930c88ad-edf5-4502-b37e-89d10cbb7ba3\",\"trace_id\":\"e6d21b9f-a6c4-4839-9bbb-927847a41030\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:54:00, 2026-05-11 11:56:00] {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d20277f-2f58-497f-bfc6-c6416e9cc762\",\"trace_id\":\"503013b4-56c3-4311-afd2-eebe508cfae6\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2182f167-944c-4976-9801-8df548dd8b85\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23388864,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] 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.35,\"average_seconds_per_request\":0.35} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:46] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":373.48} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2612.71,\"usage\":23729856,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"4bc5d10a-34ba-495c-8648-2ffbb89e3dac\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23770424,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] 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\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":78.69,\"usage\":23770720,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"625d9e06-edae-40fc-b0e7-2acc36ebbc92\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23728224,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":50.69,\"usage\":23747928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"12a5c71f-9483-447e-b21e-626fc744f233\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23708608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.34,\"usage\":23744344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"7fe1d215-cc89-4f5f-a8cf-5c8d69f142fa\",\"trace_id\":\"d37e14ee-1171-42f2-baf8-8c5fbe1be82d\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:56:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6eaca20d-14ef-48f9-8af6-9f44a1bdf35b\",\"trace_id\":\"b19e8762-5f37-4f5c-858f-bf486e12bce8\"}\n[2026-05-11 11:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:06] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bda8f0bc-556a-4d28-a8aa-81395fe53859\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"9ca07234-69a8-45e3-b302-b94798ef2ef4\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:57:09] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"bbdb7dd9-1141-4e3a-9fdf-577b027755e6\",\"trace_id\":\"05ad21f5-7896-4958-9a0e-090360adc00d\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c06e8ab1-c6e0-4886-9311-8a8c38e5f4d4\",\"trace_id\":\"8c89a150-31c9-434b-bf1f-9f601d4d01ff\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e92217b4-38e6-4ecd-b711-93dc229de4a9\",\"trace_id\":\"1c224464-03b0-46be-b4d8-6a507406e82e\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring start {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:22] local.NOTICE: Monitoring end {\"correlation_id\":\"16b628fc-3633-4340-a883-797b5a349ab2\",\"trace_id\":\"fcb270cd-ef19-4703-98c4-b0811abd4f58\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d69edd16-d773-4915-b3a5-973155e15291\",\"trace_id\":\"ce870c27-1bc8-492f-92ef-df4e0eb6bb97\"}\n[2026-05-11 11:58:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"024593d6-27c6-40d6-b6f2-52cbe5779c62\",\"trace_id\":\"c9706f1d-67cf-4045-a5a6-4737be7ee635\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:56:00, 2026-05-11 11:58:00] {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:58:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"681a970b-a2a3-4764-a8a0-61c148a4a63c\",\"trace_id\":\"7fd62869-3148-43b5-bb62-8a73a39690eb\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.NOTICE: Calendar sync start {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dfe0db36-4a84-49f4-aaea-fca8e5f52886\",\"trace_id\":\"ea0b1144-1737-4e90-a784-da1b0acb4b37\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] 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: 4c2bb697-406d-40cc-86ee-e5e0d3190200 Correlation ID: 59fa5567-af47-471c-ade4-32427bc3696d Timestamp: 2026-05-11 11:59:18Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:18Z\\\",\\\"trace_id\\\":\\\"4c2bb697-406d-40cc-86ee-e5e0d3190200\\\",\\\"correlation_id\\\":\\\"59fa5567-af47-471c-ade4-32427bc3696d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] 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: cdef5555-9c61-4f37-9329-636c2fac2000 Correlation ID: 665a5fe7-5773-46b1-b0c5-355b56f63238 Timestamp: 2026-05-11 11:59:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:19Z\\\",\\\"trace_id\\\":\\\"cdef5555-9c61-4f37-9329-636c2fac2000\\\",\\\"correlation_id\\\":\\\"665a5fe7-5773-46b1-b0c5-355b56f63238\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] 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: 3eb29fa5-b102-4a40-ac03-2d533e321e00 Correlation ID: c777a41f-c760-4f54-9bef-de2c41baf41c Timestamp: 2026-05-11 11:59:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:20Z\\\",\\\"trace_id\\\":\\\"3eb29fa5-b102-4a40-ac03-2d533e321e00\\\",\\\"correlation_id\\\":\\\"c777a41f-c760-4f54-9bef-de2c41baf41c\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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\":\"72554f2b-390c-41ec-90d1-a47821355d8d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 8dc49cab-e0e8-49a6-b0ec-4dec88342600 Correlation ID: c4c4610b-b8ec-41e3-956f-c37115f2cc02 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"8dc49cab-e0e8-49a6-b0ec-4dec88342600\\\",\\\"correlation_id\\\":\\\"c4c4610b-b8ec-41e3-956f-c37115f2cc02\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] 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: 9e93c930-8d89-4e10-bb33-f0a79e232300 Correlation ID: d196fba1-ae81-40c2-8be0-f9198045bf60 Timestamp: 2026-05-11 11:59:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 11:59:21Z\\\",\\\"trace_id\\\":\\\"9e93c930-8d89-4e10-bb33-f0a79e232300\\\",\\\"correlation_id\\\":\\\"d196fba1-ae81-40c2-8be0-f9198045bf60\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3e48c8b-cbeb-41c9-a6bb-a5801d61735d\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] 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\":\"27d1c642-b0b5-4456-9b7c-7d8f6241ccac\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 11:59:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"43ff8e45-ea67-4944-93ae-3234fb3f62d8\",\"trace_id\":\"cec652d7-8574-4f49-9683-74ddf4316a4b\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16764cf4-b2f9-4ea6-b8a7-07857da37383\",\"trace_id\":\"d9e5f444-633d-45ab-b487-571cee7de329\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f339b1-32c0-42ae-9aac-9268dea7d69c\",\"trace_id\":\"6400214f-9fc1-487d-b16d-27b678738800\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring start {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:27] local.NOTICE: Monitoring end {\"correlation_id\":\"cc967e7a-75d5-4bc9-8265-4495f751e999\",\"trace_id\":\"ec8bd9fe-5311-4307-8aff-ad8fa7e7ca75\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83c202cc-53cc-4a51-acb0-f88fe85b06bb\",\"trace_id\":\"fcf16c02-0fa4-4310-99d5-e155100773b9\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b98923e0-1664-4349-a8c6-80dc188f9a20\",\"trace_id\":\"aa4b783b-8ff4-475e-9407-4559a3152798\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 11:58:00, 2026-05-11 12:00:00] {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67986e6-b263-426c-a847-483103e2780c\",\"trace_id\":\"88b99f49-829d-47d1-b6f8-fcedc2df94c8\"}\n[2026-05-11 12:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:00:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"69e8e70b-cb80-4948-9a99-d768c7fabb18\",\"trace_id\":\"49c9b704-6bb0-479c-97bd-6a5178b1af28\"}\n[2026-05-11 12:01:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"508b85d3-8683-456d-ab3f-5cd1528db1b3\",\"trace_id\":\"ac8356b6-93bc-47f5-bebe-f2f4a666ab44\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3d1a378d-60e3-4927-8905-f8887e1d17f3\",\"trace_id\":\"944b7b8f-179d-4ba5-9a06-0fd3f175c075\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:51:00, 2026-05-11 11:56:00] {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59b02f73-ae3f-4e46-9109-e80049515ff5\",\"trace_id\":\"5614ddaf-8e1e-4975-bab7-28cc5230ecce\"}\n[2026-05-11 12:01:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"11:56\",\"to\":\"12:01\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:51\",\"to\":\"01:56\"} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccd17019-afa7-4e62-8f7e-56f74b18e2ed\",\"trace_id\":\"491d0999-cf10-4f33-bd48-ca0374754ce5\"}\n[2026-05-11 12:01:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] 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\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:01:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"151e8889-735a-4331-9efa-440a1c9f11b2\",\"trace_id\":\"062d8887-fc2e-448f-9f14-555bfbeabeda\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:04:01.310141Z\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6b664950-d65b-427a-bfaa-97590c083f36\",\"trace_id\":\"aa7aa5f3-c4c9-4a35-bc44-c4a3c55a8d5c\"}\n[2026-05-11 12:02:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4633f3e5-fa89-4b9f-af74-85e20c5575a4\",\"trace_id\":\"26218fe6-75fb-4591-adb1-5291ac0e574f\"}\n[2026-05-11 12:02:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8b56854-4e30-4556-9b46-f560b0f45211\",\"trace_id\":\"3a6784eb-469c-443d-81c1-bc70ed4e0646\"}\n[2026-05-11 12:02:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812719,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812720,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812721,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812722,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812723,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Dispatching activity sync job {\"import_id\":812724,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dea41d7-ee3e-4e7f-a97a-60b6016a09bc\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.ALERT: [SyncActivity] Failed {\"import_id\":812719,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"00ff4d65-3fa5-493c-b0e6-5a0a585055d2\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:28] local.ALERT: [SyncActivity] Failed {\"import_id\":812720,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7d015a53-1758-4ad0-8885-9ec40f6ee1e5\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:29] local.ALERT: [SyncActivity] Failed {\"import_id\":812721,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c47d3748-a9fc-4ff6-91c2-5756ac61d83c\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:30] local.ALERT: [SyncActivity] Failed {\"import_id\":812722,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"af70dfd5-1584-4eb5-a88d-13ac6ed503ac\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812723,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"51b192af-e79f-4e2b-ad98-feaebcf20c48\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:33] local.INFO: [SyncActivity] Start {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:44:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] End {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:34] local.INFO: [SyncActivity] Memory usage {\"import_id\":812724,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28724792,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"85d11b4b-b935-429a-bc5a-4584707f151f\",\"trace_id\":\"1bcf0d5e-e4e2-4f50-8024-7f68fbcb8e6d\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a4d5069-a7b3-4b3e-8d7f-c076e44351b3\",\"trace_id\":\"d6c6e772-8962-4940-877d-64950182e999\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6b032b5-4d0b-441a-a8b3-e4cc1ca06bd0\",\"trace_id\":\"27f07167-c0df-41b6-a65c-8209f1a593a7\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] 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\":318.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:02:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"cabbf04d-6060-440b-9dd4-cabc547f7ee8\",\"trace_id\":\"cb94e764-8868-41c8-9a3b-1d00d7e9292a\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a5b22ae-4849-4cb5-84a1-de89e04cd5b8\",\"trace_id\":\"8447064c-43dc-422d-894e-a54ffbbf7181\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64980aec-2896-42fb-bcb9-02034393441c\",\"trace_id\":\"5350fe7e-a328-46e9-8205-8293d02f206c\"}\n[2026-05-11 12:03:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4a8727b3-dd1a-4c4b-9b62-033f1040e6a5\",\"trace_id\":\"36c76caf-78a3-42a5-be8c-510bd9c6e036\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6bd83c32-112d-4211-94e0-33cf12b0491c\",\"trace_id\":\"566fa6e6-4ce9-405d-8ca5-36dae51c8385\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7dfd1ad-f565-4ea4-a7b3-6ad8ad72cb82\",\"trace_id\":\"b028c50a-c9f4-43c2-90b1-e32ad7d85610\"}\n[2026-05-11 12:03:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Dispatching activity sync job {\"import_id\":812725,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"990087d4-ae3a-4724-ba67-901c58aab41f\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Start {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:00:00\",\"to\":\"2026-05-11 12:00:00\"} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] End {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:51] local.INFO: [SyncActivity] Memory usage {\"import_id\":812725,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28883304,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"4e0b1920-6943-4fd0-832d-2f878ad84821\",\"trace_id\":\"bdf3c73c-0948-4490-91b7-953c76289e13\"}\n[2026-05-11 12:03:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:03:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1b9c81d-937c-4057-88dd-842fdbb3118f\",\"trace_id\":\"b45cc768-e8ce-4277-9d31-37cf858c8706\"}\n[2026-05-11 12:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1845,\"uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Pacific/Tarawa\"}}} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ce46fe-edd8-441f-ab67-82736c438274\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:08] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:09] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1845,\"user_uuid\":\"5486011b-8a99-4711-a7ad-c31d433f7c05\",\"email\":\"carter.leila@example.com\"} {\"correlation_id\":\"b3746f54-9a21-41f1-a545-fff64f47a45d\",\"trace_id\":\"d49cdd65-6530-44c0-adaa-92661a4d3a2a\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:04:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1eb61e71-41c9-48f1-bd67-637a1ba5f503\",\"trace_id\":\"0db0cf8d-b37a-4008-b1ac-c1cdeaf41594\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eff18911-c17a-4bba-a97f-7cf16da8b350\",\"trace_id\":\"96ec2dbb-57ad-4fc8-9171-82c50cfd6b6b\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04df40b6-3fa6-4748-a21e-d6b4e03d49e3\",\"trace_id\":\"b2caed43-1ac0-4346-98ac-b1d8373bad9e\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring start {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:33] local.NOTICE: Monitoring end {\"correlation_id\":\"82274a99-1da1-46bd-81b4-672c345c65b4\",\"trace_id\":\"22eb2bfc-4c6c-4a13-8044-f6f22c2ab31c\"}\n[2026-05-11 12:05:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"535019c1-c234-4a08-a81d-035757d004ed\",\"trace_id\":\"1d1b219b-fee2-47e2-8d79-7e44968935e0\"}\n[2026-05-11 12:05:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:54] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:05:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc6999a4-cb9b-4ac2-b72d-14f128961266\",\"trace_id\":\"c58f0405-d34a-4516-952f-d553c07bd5e3\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8af611ee-0aff-4743-ac38-fba683437367\",\"trace_id\":\"c9e3adbe-e3ab-4df2-9faf-26c552c4bbf2\"}\n[2026-05-11 12:06:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c510da3d-c908-453c-8060-817821948925\",\"trace_id\":\"6fe7b865-d9f5-4a7c-b338-d25cfb454e33\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4cbfb372-6d55-41a1-8b5c-60080241a64e\",\"trace_id\":\"8a369363-0208-451e-aa5f-bfdfb51eac9f\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 11:56:00, 2026-05-11 12:01:00] {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c1b4ec81-d995-457b-8662-ecfbebb3ba75\",\"trace_id\":\"92afc10e-8b2d-4cff-b5ed-c6c3bd2889a2\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:01\",\"to\":\"12:06\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"01:56\",\"to\":\"02:01\"} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c88b0977-fbc8-415b-8b6b-1bda91cd2b52\",\"trace_id\":\"2de00b9b-5685-4cec-95e5-0b400a8e7f6c\"}\n[2026-05-11 12:06:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] 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\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:06:49] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"c74a5560-7396-421f-a52f-dd3ff49f3c41\",\"trace_id\":\"640c35d8-2323-4b13-998e-260c6e91361c\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:09:07.585541Z\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb1a0aaf-fb11-4615-94f7-b4f379d99c3e\",\"trace_id\":\"f76bd232-88c3-4422-b056-8e4be3f65c95\"}\n[2026-05-11 12:07:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65229f31-e7c6-49db-8e10-3c2473d907f6\",\"trace_id\":\"e091aa06-3bdc-43f6-8e0a-faa009ea6d1f\"}\n[2026-05-11 12:07:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:07:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:03] 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\":211.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bb2749c-da32-424f-9850-c953b2bdd464\",\"trace_id\":\"e391239c-c4ac-4c0e-8474-13a6df5fcc9b\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e373212e-5d4b-4991-8f5d-eb8b9f5cff2a\",\"trace_id\":\"01e853a8-729a-4b1c-9ee9-e5336a8b1712\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5720b6-644d-4163-b814-287dbe01c92a\",\"trace_id\":\"852182e9-078f-475d-8dba-7d169e35ab4c\"}\n[2026-05-11 12:08:33] local.NOTICE: Monitoring start {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:34] local.NOTICE: Monitoring end {\"correlation_id\":\"4c0161c0-a8f7-4212-b593-ea274557c0cc\",\"trace_id\":\"3a8a4c1b-bab3-419c-9b06-cb7d570b57e2\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09aa9c09-6c8e-4834-8981-9e7714e04d2a\",\"trace_id\":\"f06ba8f0-2eaa-404d-8ef7-f45e6028df66\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:08:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20b3aa2e-017f-467e-ab72-6acf06e93255\",\"trace_id\":\"fdabe0c5-1e47-4af4-9d9e-31d39f953d06\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:07:00, 2026-05-11 12:09:00] {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"137bea0c-5bfb-4b13-9f03-c7338703ae55\",\"trace_id\":\"c582158f-f3bd-43a1-ab83-c7c774737368\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:09:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"540a3110-aaa8-4bdc-94db-2b38ea90bca0\",\"trace_id\":\"fa71ab3f-a184-4e23-a387-205bf215f087\"}\n[2026-05-11 12:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2ad4eaf-2a63-435f-a919-2955b5926937\",\"trace_id\":\"51f8e0b7-5d1c-4ac0-936e-6d03d4ee6cb7\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02407a13-5fca-4054-8cf2-ea75d2861254\",\"trace_id\":\"e293aa8b-3853-4489-9f8c-61c7d0b555e5\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring start {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:31] local.NOTICE: Monitoring end {\"correlation_id\":\"5936b994-c849-4686-a679-531338c96513\",\"trace_id\":\"049073d9-1e62-4ca6-873c-39b21f1a97de\"}\n[2026-05-11 12:10:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba8926f9-8c2a-4bb5-98e5-454445b7133e\",\"trace_id\":\"e55fa948-3518-4420-9735-2d3ba3f0cc35\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c263d0c8-b089-404b-bab6-89efdc806169\",\"trace_id\":\"0551ff6b-4560-4a83-9cca-935e27602890\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:08:00, 2026-05-11 12:10:00] {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec106243-5821-4819-80fb-53edf60bb4db\",\"trace_id\":\"a0b3918b-5903-4bfc-9756-0394eb4ad6ac\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:10:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c55831c-ab94-4ee5-8d5f-b4dba4eea283\",\"trace_id\":\"0ef9db15-547e-45aa-b145-681052b0e038\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4845d426-47cb-4aaa-a9f7-b60252955d67\",\"trace_id\":\"cb4e58ce-8b91-40e8-a826-ef4e08cdb713\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89d8e7b-ba20-440f-bee3-7023fcbe078c\",\"trace_id\":\"65c1ef93-379e-4e7c-bbea-c28bea906500\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:01:00, 2026-05-11 12:06:00] {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90d0a36d-82fd-4da9-8f46-6e82a7e60f83\",\"trace_id\":\"2acfa347-b7f3-4738-b1f7-00a3a04ab7a4\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:06\",\"to\":\"12:11\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:01\",\"to\":\"02:06\"} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"41320f33-7f6d-4d2e-8d8d-9eba0f0eb50d\",\"trace_id\":\"67fa621d-0511-4cac-b5fb-a617f21d0df7\"}\n[2026-05-11 12:11:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] 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\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:41] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"93b00bf3-c8ee-465e-b76a-fb39e774f00e\",\"trace_id\":\"754ecb93-e74e-432a-a232-9ec45223e39d\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:55] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:13:55.701427Z\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"350cc154-ed9c-47d7-b2f7-2d43d78a72ac\",\"trace_id\":\"8791deab-702c-4a13-9ee5-c0ad8bd8f50c\"}\n[2026-05-11 12:11:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c00dfe1b-972e-40fb-abaf-756e6b712939\",\"trace_id\":\"5b50862e-1a7c-49e4-9b32-1c2125788d17\"}\n[2026-05-11 12:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df34a605-d107-465f-9da2-b61e3ff56f38\",\"trace_id\":\"6bcc3610-a7c1-4b9e-9bf4-f67d7511e5f9\"}\n[2026-05-11 12:12:22] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8de8a972-0d7a-4a35-b7c0-6d5bc2b25746\",\"trace_id\":\"df8a8c1e-1571-4a50-bba2-07e34c7cbf2c\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:53] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":474.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:12:54] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"871fa879-6628-4b78-b29f-778ee41729a9\",\"trace_id\":\"24655a87-eaaa-4cc1-810f-2480c9c1d55f\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c35776f8-62c9-41ff-b6d4-a23750a1a889\",\"trace_id\":\"5c2537e6-9a1b-420f-8c9e-bb65fcd82302\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"319a5d19-1dc4-4013-ab90-f349b03395c2\",\"trace_id\":\"f9ac67b6-4131-43d1-ac74-5f26ee330b55\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring start {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:13:45] local.NOTICE: Monitoring end {\"correlation_id\":\"4a33e003-3405-40cd-a89d-2b7cc6f78637\",\"trace_id\":\"70fb87ea-843d-4768-a3f5-7f986571d6b5\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac82aa35-8897-40ba-a650-c663dadfd5b2\",\"trace_id\":\"2ffb91a9-1d0b-4a20-97d0-557952cb1ced\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb99b43c-e8c2-4d74-ad60-653e57fca84c\",\"trace_id\":\"dac1a19a-1962-4e6f-be53-7b22a20784f8\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.NOTICE: Calendar sync start {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d239566f-ccbf-4143-bb0f-e24eb6a77126\",\"trace_id\":\"af5f5156-3fdb-4cd1-ac6c-52881c44951d\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] 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: 7401461f-0309-4080-ae0f-82ead7662000 Correlation ID: 8dd767f6-c91d-429a-8249-cd1a0c12ae8e Timestamp: 2026-05-11 12:14:27Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:27Z\\\",\\\"trace_id\\\":\\\"7401461f-0309-4080-ae0f-82ead7662000\\\",\\\"correlation_id\\\":\\\"8dd767f6-c91d-429a-8249-cd1a0c12ae8e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] 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: 4d47225a-8d39-486b-b214-3b9f93b30100 Correlation ID: 387f2f6b-a3e1-446a-ae99-10f5684ecd51 Timestamp: 2026-05-11 12:14:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:28Z\\\",\\\"trace_id\\\":\\\"4d47225a-8d39-486b-b214-3b9f93b30100\\\",\\\"correlation_id\\\":\\\"387f2f6b-a3e1-446a-ae99-10f5684ecd51\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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\":\"8fee47c6-d80c-4bbd-8e93-270099d267a5\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: 70afa108-a352-4d05-923d-a8339be31f00 Correlation ID: ed656a37-fdf4-4336-9b3a-1b3a24815b73 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"70afa108-a352-4d05-923d-a8339be31f00\\\",\\\"correlation_id\\\":\\\"ed656a37-fdf4-4336-9b3a-1b3a24815b73\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] 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: f38b455a-055d-472a-8f95-5d0c61da0200 Correlation ID: 45c692e5-7f27-44d6-b2c4-9a09c3a08153 Timestamp: 2026-05-11 12:14:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:30Z\\\",\\\"trace_id\\\":\\\"f38b455a-055d-472a-8f95-5d0c61da0200\\\",\\\"correlation_id\\\":\\\"45c692e5-7f27-44d6-b2c4-9a09c3a08153\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] 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: 4d668ac8-90d6-44d2-b46c-5478babe0100 Correlation ID: cdb475ab-2bda-446d-b41c-84ce3b7f8698 Timestamp: 2026-05-11 12:14:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:14:31Z\\\",\\\"trace_id\\\":\\\"4d668ac8-90d6-44d2-b46c-5478babe0100\\\",\\\"correlation_id\\\":\\\"cdb475ab-2bda-446d-b41c-84ce3b7f8698\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b61b54d7-634b-491a-b181-5ef01b0a660c\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] 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\":\"3443b55d-63cb-41e1-9c98-8139490ef002\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:14:34] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6c4802d0-2244-4954-9183-a6ae9a8231ba\",\"trace_id\":\"24ce815c-e804-47fd-9b66-85d28edaf62c\"}\n[2026-05-11 12:15:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c894e4d-e783-4dc9-bcd7-226924204268\",\"trace_id\":\"a4b070a3-71d7-4cef-81ec-886b50935301\"}\n[2026-05-11 12:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"565e34f3-a349-414b-9d5f-c7128e6519af\",\"trace_id\":\"b116eb89-70b4-4f05-984d-30e4a2b41ef4\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"32b9ac45-6ad5-4b76-a01a-40a4fe9bcafc\",\"trace_id\":\"ca81b817-876d-4e75-9cc3-cb7a50c8f100\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49df8a6c-3151-4a1e-8b86-c53f65ec2e63\",\"trace_id\":\"a7ca3146-a5c5-47c1-b0a7-b3f5bb28afb3\"}\n[2026-05-11 12:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65c763a5-5ec5-4ead-b605-02d44c12452d\",\"trace_id\":\"04470fe1-aafa-44c6-bc4e-df3c35d9f1ae\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9a7d589-ae27-4d47-8c0c-3f5cbe598444\",\"trace_id\":\"9800fbc5-0d57-4b05-a290-444b2761188b\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:15:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c49fb166-a266-4f41-bf2e-1f7fa409d0c4\",\"trace_id\":\"4088ec5b-8952-40f7-98ef-361dc36da74f\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f318779f-ebec-478d-a1aa-301d086d7022\",\"trace_id\":\"72f8b271-e7d8-4257-bbbc-2f56e3133589\"}\n[2026-05-11 12:16:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:06:00, 2026-05-11 12:11:00] {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8424605-b534-48d3-974b-2f00e970046e\",\"trace_id\":\"6b395f7e-01c2-43d8-9fca-4367611cb8e9\"}\n[2026-05-11 12:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:11\",\"to\":\"12:16\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:06\",\"to\":\"02:11\"} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ac7d2a2-6433-4987-b2b8-aa45c21d35bd\",\"trace_id\":\"ee502667-3969-4113-99ae-c4c6dc23b008\"}\n[2026-05-11 12:16:31] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] 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\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:33] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"64c3680e-17d7-4192-93ed-4c05853ec7b3\",\"trace_id\":\"28353860-5092-4126-ab33-d5fe597c39ce\"}\n[2026-05-11 12:16:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:18:47.155680Z\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba0c4719-5f75-4e82-bfc6-572e41f52fb3\",\"trace_id\":\"9dcf9d79-9253-40c3-a6d7-964edb93d92f\"}\n[2026-05-11 12:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812726,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812727,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812728,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812729,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:56] local.INFO: Dispatching activity sync job {\"import_id\":812730,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Dispatching activity sync job {\"import_id\":812731,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b95086a1-5e45-4692-b2e4-052ad8abb0c9\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:16:59] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.ALERT: [SyncActivity] Failed {\"import_id\":812726,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c824c3d5-9999-4d8c-b3ec-e288455a06c4\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:16:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812727,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"06a144b5-931c-4cb3-9aca-762e350401c2\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812728,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"7fb1764e-44c6-4468-aeb5-82af6c4b191b\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812729,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bcc40ff-2f2e-4b7b-8028-0ad276f28880\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812730,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8b332819-903d-42b9-adb3-ce09e67d4fc5\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Start {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 11:59:00\",\"to\":\"2026-05-11 12:15:00\"} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] End {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:02] local.INFO: [SyncActivity] Memory usage {\"import_id\":812731,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":30122432,\"memory_real_usage\":65011712,\"pid\":74086} {\"correlation_id\":\"65d9d228-8b2c-46e8-aafa-1e307fcb3103\",\"trace_id\":\"f4d83388-77d6-4e29-b290-4f302f5622ee\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c0ee6a94-9f55-403c-842d-e80f938601e2\",\"trace_id\":\"586085ca-4d5d-4db6-8434-6bf6b584598f\"}\n[2026-05-11 12:17:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36dc86dc-e025-4a94-8be9-2f536be96dc8\",\"trace_id\":\"31702b39-8260-4898-9c63-1aaafda8cde3\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ddb3e77-717c-486e-9fc4-031b49aa1515\",\"trace_id\":\"8e4beca1-d251-46d3-b103-d6827e87577b\"}\n[2026-05-11 12:17:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:43] 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\":241.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:17:44] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"ad363a42-8b61-4946-8dfd-ab45e1c0e407\",\"trace_id\":\"cc6d95b3-13bb-41e2-9ebb-77005f6b211b\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2279f83-79c5-4b01-b7e7-cfe60c24db3d\",\"trace_id\":\"740ca19a-3a96-4570-ac39-f3373ecb0a44\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b106accf-d4b6-4727-a77b-f2a974724439\",\"trace_id\":\"9dff6a80-43f3-43db-8094-648a0f5201c9\"}\n[2026-05-11 12:18:31] local.NOTICE: Monitoring start {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:32] local.NOTICE: Monitoring end {\"correlation_id\":\"34af1440-d8ad-44f1-ab50-f2a449357869\",\"trace_id\":\"c12fba6d-ec88-4297-b890-1e16c31f4a5a\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"64cdace9-59e7-4917-9ce3-c4552a895ec7\",\"trace_id\":\"44cb7596-73c1-4db6-8dc6-3eb0c3ba235b\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba5023b-e6d0-454d-8c20-16b3c727bfd3\",\"trace_id\":\"ab255743-081b-4b7a-bc24-6d816eeab8d8\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:16:00, 2026-05-11 12:18:00] {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:18:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"679a7205-72ff-4192-8ed9-e1be0f1aeab7\",\"trace_id\":\"7a4b3d86-f538-434e-b22d-279efb32904b\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:19:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce9bcaf5-a719-45ee-a0ae-3a49467ef12e\",\"trace_id\":\"ed2ec658-5adf-464a-87f4-93c822c4da3d\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5166d35d-4d01-4b5d-a707-31db8bf2b7d7\",\"trace_id\":\"138d9696-47f4-408a-889c-f480b51e2aa6\"}\n[2026-05-11 12:20:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e05db029-9c8f-4c94-96a6-9425dbaf8ef0\",\"trace_id\":\"d789cc75-92d1-49f1-8616-abe0319535b9\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring start {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:22] local.NOTICE: Monitoring end {\"correlation_id\":\"37da295a-f816-40e3-a318-1c5134b28d57\",\"trace_id\":\"39ec16dc-1412-45e7-997a-1600b4e4e785\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"27e4a7bb-64d3-41f4-a367-562a99a61559\",\"trace_id\":\"84e3499a-a8fe-46a4-a75f-bcb662d90d7a\"}\n[2026-05-11 12:20:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5e8f251-32d3-4600-8c45-24c8b60dc589\",\"trace_id\":\"520c6125-d664-41dd-8ea3-0c19ebac8574\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:18:00, 2026-05-11 12:20:00] {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:20:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fd1fe3b-16a0-4f99-a51e-4a3bdb3f80a0\",\"trace_id\":\"bca35c97-eaf1-4ba1-8e13-d68a03733efa\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b7a7e70-cb75-4c84-b8f0-6ca4685dfeeb\",\"trace_id\":\"d063a295-3a83-42a5-af96-be7f4432c2e9\"}\n[2026-05-11 12:21:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e86bfc68-4128-43bf-a61c-9911fd1e04be\",\"trace_id\":\"54ce4438-138b-4f81-a4c1-7aa1389bd2cb\"}\n[2026-05-11 12:21:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48e55441-bcfb-40bb-a727-ffc1504deed9\",\"trace_id\":\"e117b644-2c8c-4582-a1a7-a9484b1ce075\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:11:00, 2026-05-11 12:16:00] {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c829c64-c120-4952-92d0-6e031c245116\",\"trace_id\":\"3909e20b-cca4-4617-a2f1-f6e633412f74\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:16\",\"to\":\"12:21\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:11\",\"to\":\"02:16\"} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18657c06-bf49-44b5-a586-2cc33dfbac6c\",\"trace_id\":\"c5709e81-501f-414f-b212-4c12a3e97ed1\"}\n[2026-05-11 12:21:49] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] 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\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:51] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6d623317-2549-48d6-bc51-ccc907721e1d\",\"trace_id\":\"2ea36702-a6c3-4052-a62b-517e5dd4624f\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:23:59.382012Z\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"520f6a72-31bc-4a4b-8ef9-dfaac8131068\",\"trace_id\":\"0ef5b84c-8257-401c-ad56-2c43bf9170b2\"}\n[2026-05-11 12:21:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"baf1d10b-3075-4e0e-a69d-271c9b30251a\",\"trace_id\":\"0160ad26-8e64-4a9a-9bcb-2bb5a6e5c4ef\"}\n[2026-05-11 12:21:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:05] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f9591a4-25d4-498a-b1ab-10c511c286d2\",\"trace_id\":\"3a958e2a-3128-4df0-8f46-891a3de9d305\"}\n[2026-05-11 12:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0f4628cb-4553-4563-b0fc-2e4b2d7d7017\",\"trace_id\":\"ce16aae8-0e92-4f2a-8b64-d9f8f0742fd0\"}\n[2026-05-11 12:22:25] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] 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\":266.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:22:56] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"785b65a8-bb4c-44ce-a321-808303de1cc1\",\"trace_id\":\"47e5dcf0-839e-4b9c-a0de-a5ee1c352314\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b10d35cf-25a8-4d0a-a093-3c03c1d21c35\",\"trace_id\":\"79b8aa81-09c0-419d-8fb4-748cd7c07dfa\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65f73524-9a3f-4cd1-8b3c-08178041be45\",\"trace_id\":\"0df27da9-9e43-4d4b-a8f6-529d19ed31d1\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring start {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:28] local.NOTICE: Monitoring end {\"correlation_id\":\"f57ddb05-bb12-4534-9853-5100453a83e6\",\"trace_id\":\"4c6897b9-a428-44bb-a95b-7e595e694e9b\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a3fbe76f-d2b6-4397-91bc-9f387f960603\",\"trace_id\":\"ce23c101-154d-4e0d-8562-de1bf72a01d2\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b45dff6c-fe59-41f1-a02a-3d2db2a83bdd\",\"trace_id\":\"74ae7c19-6ff3-40df-b5b6-f4044f86819b\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"317d8fa7-22d4-46a8-975a-71c29035ec8d\",\"trace_id\":\"e1c55d58-252b-49ab-b539-bb684c7539f3\"}\n[2026-05-11 12:23:56] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:23:57] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"fc1a4bd3-12c3-4905-a709-0d351f45e06d\",\"trace_id\":\"d7d04c3f-4829-437d-bd31-af51c6258297\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8be18703-0b36-46e2-8f71-489d5247a584\",\"trace_id\":\"a3d8f8c4-5107-4a89-bda5-56cae4361144\"}\n[2026-05-11 12:24:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d819555-0504-4123-8fa3-5254967a4026\",\"trace_id\":\"36468ee0-66c3-42df-a715-d5a567b33d56\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring start {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:29] local.NOTICE: Monitoring end {\"correlation_id\":\"8d567cd7-7e41-41b1-9e69-2385d4cfa7a8\",\"trace_id\":\"b46279db-4250-47db-be10-da9479ad590a\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e236f29c-523b-4e37-9e12-45b0da7aa46b\",\"trace_id\":\"21ad246c-71e8-401d-b560-a39c4d6f65fd\"}\n[2026-05-11 12:24:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:57] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c10f484-1ed7-429b-9724-4c36dbaab3b6\",\"trace_id\":\"4650b826-3e95-4f5d-9722-227c528c6c42\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:23:00, 2026-05-11 12:25:00] {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43cc53aa-24f2-4b8d-a449-e48115af6b07\",\"trace_id\":\"f2bb1873-b779-4d04-967a-888f1e867756\"}\n[2026-05-11 12:25:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"344fe7e1-c3a8-4e7f-8170-ed913c472414\",\"trace_id\":\"d33376a0-3e56-43ba-bfcf-2339f37542f0\"}\n[2026-05-11 12:25:25] 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\":\"a2e39f0c-6db3-49a1-8c09-98a1f5f9bda0\",\"trace_id\":\"b5be15b6-cf7b-4fd3-96fc-86d618b464eb\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e415ec3-72a6-4366-bb43-6e5da27f0efa\",\"trace_id\":\"c795c8ff-2220-49a5-9f11-d7106d80f18c\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19883e58-93fc-4e3a-8599-c450fe7efb4d\",\"trace_id\":\"be470217-f201-4e61-af64-48d840e099a5\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5b3e0e06-6c7b-4825-99a3-6dfc70267f4f\",\"trace_id\":\"f502c0e8-8051-48b5-9713-87ef60a0500e\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1344d34e-960d-4b58-afb3-7be4b2ce10cf\",\"trace_id\":\"c57dc190-922d-444d-84c2-11c132cfcb75\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45577d8a-3a8e-4150-9dc2-bc3ed65a85be\",\"trace_id\":\"b3cbbe19-fba8-4d58-9b7c-e15d5de225ce\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:24:00, 2026-05-11 12:26:00] {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae0af53d-e285-4a35-9e7b-0edcced20eae\",\"trace_id\":\"56514118-bd73-4c46-952d-88c534593158\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e296b63c-e11b-44dc-81bf-315d967a55bc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23705696,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:32] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:33] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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.36,\"average_seconds_per_request\":0.36} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":424.21} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2009.68,\"usage\":23905768,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"5eb6e9cc-4b26-4881-bec7-7bd4741f7c53\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23880504,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] 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\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":105.69,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3c5441b7-57b7-4b93-89a0-c54af39354fc\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23837928,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":30.33,\"usage\":23857632,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"77cb9653-cfa5-47ef-abd1-9324f9bc381c\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23818312,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:34] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.58,\"usage\":23854048,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6d3c2da9-8eba-4235-a28f-fc1be82e2565\",\"trace_id\":\"7a505e32-77cb-43ed-9141-8505133f1ac8\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cc3e6d7-cd8a-44a8-8d60-049d66a566e9\",\"trace_id\":\"0e059d99-cb53-4410-ba85-82bf3a2c8af7\"}\n[2026-05-11 12:26:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:58] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d57268f-32d4-4e03-90ad-534140824d88\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:26:59] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d0588d51-150a-4f58-8693-e6e3cbaf337a\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"a06bdd65-beae-453c-b260-e153267b9c31\",\"trace_id\":\"cef544b9-52c4-44d5-b361-4bb6f308be9c\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05628172-a2f4-47b5-b915-98d6f0fffebd\",\"trace_id\":\"fda18837-61d8-401b-9762-af15065443c8\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ba3fba8-62e3-4efa-9275-136b27861a0f\",\"trace_id\":\"128450ce-7b06-4190-9767-340c6d1661e1\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring start {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:32] local.NOTICE: Monitoring end {\"correlation_id\":\"04a3f08a-f1f5-4523-b617-165034b6cf2f\",\"trace_id\":\"b7d164f1-5d51-4f19-88b9-7a1e4cdd546c\"}\n[2026-05-11 12:27:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eadaa109-fab1-45ff-9eb2-65ea5d005584\",\"trace_id\":\"8c549159-0f61-4827-9adc-41ec78d53b62\"}\n[2026-05-11 12:27:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:47] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9bb2b685-cf85-437d-8fb1-78fce6d810b9\",\"trace_id\":\"45ef9c78-c297-4b6b-8068-350c2a32309a\"}\n[2026-05-11 12:27:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa34df26-bbe1-4365-8946-33d6ffa19cdf\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:27:55] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ec257f30-38ec-4977-a4c0-51bf7a05ae9a\",\"trace_id\":\"31df4851-f5ad-48f2-b776-551a112c5c01\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d83261db-1f58-45ad-b7ad-98b8d6e2a3b0\",\"trace_id\":\"efe9aac4-27df-4a9c-a0c0-b0d30d86bc92\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d01a8f09-3e80-4d81-9822-3ee3c5e61038\",\"trace_id\":\"0e9e3880-1bef-4493-9b30-2b02f10d6af9\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring start {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:31] local.NOTICE: Monitoring end {\"correlation_id\":\"0f632fea-19e4-45b3-b5fc-d989313b5874\",\"trace_id\":\"ad41804e-eaf8-454f-87f8-e9456ba84658\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5fd6f7b2-d4c0-45f3-be1a-175bc4fff4a7\",\"trace_id\":\"6566ba80-1c28-4440-98bc-7c814405debd\"}\n[2026-05-11 12:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dbae43eb-9196-462a-8f7e-569dcedf9943\",\"trace_id\":\"357e79e8-f8bf-47df-b390-a3d40c03437d\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:26:00, 2026-05-11 12:28:00] {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8759214f-cba4-40ff-8c96-de84018cb116\",\"trace_id\":\"7c7ce687-edbf-44ce-9d45-0fcfc80c9f53\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:28:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:28:59] local.NOTICE: Calendar sync start {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"392c63a7-d0d7-4ed8-80f2-c31adcd960a7\",\"trace_id\":\"7c2aa67d-4f73-4eb2-a41b-72f1714ad0aa\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:02] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:03] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: 903bc53d-8962-4e32-a6a8-c9d186e81e00 Correlation ID: 3757ce12-b359-4871-93dd-2c818da7f0d7 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"903bc53d-8962-4e32-a6a8-c9d186e81e00\\\",\\\"correlation_id\\\":\\\"3757ce12-b359-4871-93dd-2c818da7f0d7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] 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: dd265c32-ebdf-4635-9833-cd8f38eb0000 Correlation ID: 049424c9-8e9d-4ade-a73b-f2334a290e20 Timestamp: 2026-05-11 12:29:04Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:04Z\\\",\\\"trace_id\\\":\\\"dd265c32-ebdf-4635-9833-cd8f38eb0000\\\",\\\"correlation_id\\\":\\\"049424c9-8e9d-4ade-a73b-f2334a290e20\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:04] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: 8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000 Correlation ID: bbcbfc91-e3cf-44c1-8003-dfb093aec18a Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"8b22ccc7-5b2f-46d1-99e2-ea1bd6a60000\\\",\\\"correlation_id\\\":\\\"bbcbfc91-e3cf-44c1-8003-dfb093aec18a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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\":\"dc971a8e-a539-45e5-af1d-e466aaa92d0a\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] 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: be11735b-4062-4ff4-a3b0-418c3d0b1e00 Correlation ID: 50dbd0f6-741b-41df-9d25-be9450440657 Timestamp: 2026-05-11 12:29:06Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:06Z\\\",\\\"trace_id\\\":\\\"be11735b-4062-4ff4-a3b0-418c3d0b1e00\\\",\\\"correlation_id\\\":\\\"50dbd0f6-741b-41df-9d25-be9450440657\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] 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: e7a29036-6042-41f5-a367-3e74a6032200 Correlation ID: 99b9e0d8-a137-48cb-a17d-40b64d506b66 Timestamp: 2026-05-11 12:29:07Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:29:07Z\\\",\\\"trace_id\\\":\\\"e7a29036-6042-41f5-a367-3e74a6032200\\\",\\\"correlation_id\\\":\\\"99b9e0d8-a137-48cb-a17d-40b64d506b66\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:07] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"4eb522757b863daff86e73101713e23d79b066539939fb5a7c3bcb94030a15a0\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:08] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] 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\":\"d9e5090e-aa6a-4674-8e03-7e85311a0765\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"223f2d9d-f01d-4745-a701-52bd86fb6f17\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:29:11] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"ad7fb635-c71e-4df1-8dfe-476a6b500be5\",\"trace_id\":\"c54b11eb-5d4a-48c6-a9cb-e3a4c47dcbf6\"}\n[2026-05-11 12:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1251e9db-ef8d-4c91-9336-1ee0f0730cf7\",\"trace_id\":\"dfd923cd-7195-4a1e-9ce2-768b6ef8e343\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04f8da0d-a30d-46db-8162-9f58f0ddaeb4\",\"trace_id\":\"1b8eeb5b-44b8-47d4-870f-a5b1f5e98d70\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring start {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:38] local.NOTICE: Monitoring end {\"correlation_id\":\"c9c8a591-1b8b-4caa-a5a4-aa28e637779f\",\"trace_id\":\"a0bfbb6e-9704-4884-9cad-92fd14d25c77\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"63384407-cfef-4aed-b985-2fca376de38a\",\"trace_id\":\"a6b7afed-bcf1-475d-9ff0-11d8abcd8178\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19bf9c67-7407-44ff-a279-99b5a8d152a9\",\"trace_id\":\"0b9230a1-2a62-4197-a520-6605c2e4c039\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:29:00, 2026-05-11 12:31:00] {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"43f397a3-6cd5-4184-84a2-a47f15fa1153\",\"trace_id\":\"3f83adbd-589b-4b11-87e1-30bf88862dca\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56ac25c8-cb8e-4c00-9433-7c645420bbb9\",\"trace_id\":\"414b3062-1b63-4200-8042-00fb7cbbc8f9\"}\n[2026-05-11 12:31:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"502ea9c5-01fb-4de3-be78-983144227c87\",\"trace_id\":\"4f6f307f-0f29-443b-89b2-67418db5a8ea\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58fb330e-005a-4b45-892e-c0728fad2297\",\"trace_id\":\"63584b05-93af-4729-8638-b3198b7373b3\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:21:00, 2026-05-11 12:26:00] {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05823705-03d5-4b3b-aae6-2b8f5ea3dfb2\",\"trace_id\":\"bd3c1a1f-41f1-42ce-9070-1d58ec479bd6\"}\n[2026-05-11 12:31:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:44] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:26\",\"to\":\"12:31\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:21\",\"to\":\"02:26\"} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df87f644-6ccb-475b-bb8e-da1b5b7877f3\",\"trace_id\":\"a30634ca-9064-4eb0-a2d5-301015c08782\"}\n[2026-05-11 12:31:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] 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\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:31:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9402c944-3efb-4463-a243-607690354732\",\"trace_id\":\"7f3fc8ed-0d10-42cd-9923-db604641cf0e\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:34:06.793783Z\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13496d18-4307-4fb9-b3f6-7536bcc4ddc7\",\"trace_id\":\"ac9a2b04-90e9-4227-a850-af51bf7e0154\"}\n[2026-05-11 12:32:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bd4fdafa-4e8e-41c7-9e24-ba72320261ee\",\"trace_id\":\"b8cbb62d-4acd-4ca3-8ee4-f957f9a42e91\"}\n[2026-05-11 12:32:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:12] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74dd8b56-2a56-486c-abf9-4cd6aa7b2302\",\"trace_id\":\"32343183-41f4-4f9e-8d95-8fe7933ceffe\"}\n[2026-05-11 12:32:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812732,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812733,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812734,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812735,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812736,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Dispatching activity sync job {\"import_id\":812737,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ad393152-4469-4d54-8bc5-d69c13cbe344\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:30] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.ALERT: [SyncActivity] Failed {\"import_id\":812732,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"d3eddf1c-e7c3-4a37-8c9d-741e9d9b611c\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.ALERT: [SyncActivity] Failed {\"import_id\":812733,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4bbe835a-309f-49cd-9dd9-84b795bd13a0\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.ALERT: [SyncActivity] Failed {\"import_id\":812734,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"97791348-5ca9-4fee-8a0e-42309c618500\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.ALERT: [SyncActivity] Failed {\"import_id\":812735,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"94718586-62f4-4d12-a771-73fcfadc2ac9\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.ALERT: [SyncActivity] Failed {\"import_id\":812736,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"3b41bcb3-9cbc-4e88-a62a-7d71c97cae6e\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:36] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Start {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:14:00\",\"to\":\"2026-05-11 12:30:00\"} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] End {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:37] local.INFO: [SyncActivity] Memory usage {\"import_id\":812737,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":31500864,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"9a48dd15-c322-455a-a04e-2f42487973bf\",\"trace_id\":\"94fb9f98-6dc0-495c-8825-9f7e4b245622\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"18a5b33d-7fbd-4273-ab6f-53e34a64dfe1\",\"trace_id\":\"ccb4243b-c27c-4508-918b-1edd5b78413f\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:32:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ca7fd71-e785-4f1d-b854-318633e08087\",\"trace_id\":\"463332b2-ff0a-49ac-a319-0e79465965ec\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"07663edc-3b6c-4685-b4c5-e7e258f0d54e\",\"trace_id\":\"52374c38-fd00-421f-81e1-117e6dc0aa84\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] 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\":245.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:03] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"891c0cd1-fda8-437a-8133-6f4f122e620c\",\"trace_id\":\"e4667153-9e43-4e19-8d29-6b6ce1b073cc\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:33:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd26f20d-c9ec-485b-9120-18c2ccbb0033\",\"trace_id\":\"4d131815-76b8-4380-a293-5f2c25119d6c\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a37ca40-c796-4ba9-986a-536f03879e84\",\"trace_id\":\"6e72aaa4-d5f2-475b-8e3c-e9839eac1698\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9902b198-86aa-4f70-ae9d-a01269d3b03d\",\"trace_id\":\"f1ea7f94-b138-4b3c-83d0-bbb065c03a87\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring start {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:47] local.NOTICE: Monitoring end {\"correlation_id\":\"33db6469-f45f-4a48-a561-c73f14262299\",\"trace_id\":\"4eea9fc9-0336-4f83-9828-4892e3f5e922\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d93099e1-8d05-4426-b427-9cc28bdc72b7\",\"trace_id\":\"ce9859f2-4170-4369-86af-f329ca48394e\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:34:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a9ab0d0-6d90-47a4-9b55-095dfdd42165\",\"trace_id\":\"849b2c7f-1134-44d0-934e-80af02cb8b95\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:33:00, 2026-05-11 12:35:00] {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:35:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7276e28-a926-4f77-9313-aea75601a00a\",\"trace_id\":\"4e486077-60eb-4ef8-999d-c8b5112a3f26\"}\n[2026-05-11 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ccbed33f-6c65-499b-877f-1c3ffcaf9125\",\"trace_id\":\"0ed97705-9243-4f61-ac6c-78244196d884\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:37:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"087bfd2e-f67d-4fe0-8d90-4b24447245c3\",\"trace_id\":\"4a1673b2-a879-4b5b-a608-e5bab737f2a9\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring start {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:24] local.NOTICE: Monitoring end {\"correlation_id\":\"64a64f0f-0d93-4e19-8938-6c01989528eb\",\"trace_id\":\"af18aeb7-3cca-45a2-be17-14b52a9503be\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bd8991a-3ad2-446b-b56b-c4a5999f8c35\",\"trace_id\":\"4e72708d-2295-49d8-9050-2743b8fd8d9a\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a24375a-e37c-4053-a723-0bd64ccf011f\",\"trace_id\":\"30216504-d807-4ec6-a089-f4d284411775\"}\n[2026-05-11 12:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:48] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:36:00, 2026-05-11 12:38:00] {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"604bc7af-c378-4421-bc5e-c0668d9d6d6c\",\"trace_id\":\"6d2a6c7b-a755-4129-a72c-ccb293543d5d\"}\n[2026-05-11 12:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6532af4-ea0b-4f8c-8c94-f07b4d966cc4\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:56] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23814760,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":391.5,\"usage\":23880424,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3cc31fdc-6571-4644-909a-07234d7305d3\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23838640,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] 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.49,\"average_seconds_per_request\":0.49} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:57] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.72} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":685.14,\"usage\":23902992,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"33420e82-f413-4b5b-90b5-b41cc8824b5c\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23880920,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":74.3,\"usage\":23868928,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"aaf2ceb1-acaa-4329-b200-7cab2d3683ac\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23829608,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:38:58] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":45.34,\"usage\":23865344,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"75559c5b-c8f2-45f4-8f83-1f5203f559a9\",\"trace_id\":\"1bcd1e37-eb5a-43ab-9cdb-4cba98a9403b\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30381675-5d98-4d7b-b798-f2edf9afbfaf\",\"trace_id\":\"24e9369e-32c0-427c-b462-72bf3c6faf54\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"997774e7-4817-473d-b3fb-1671062fdf1a\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:28] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"e8b3a83f-2d68-4185-ae60-53f8584dbc9d\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:39:29] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"98e2a28a-a210-4af1-b21f-45d9a3a38fc2\",\"trace_id\":\"818ab337-f0a3-4711-89ca-79d4c0653e64\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"178535e2-3fb1-48e2-a406-e6a1836afd92\",\"trace_id\":\"b8a746f5-7d99-45e7-98e0-bcd4e27c7ef0\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947b3a04-5e22-42f3-8874-2129ed80fa76\",\"trace_id\":\"1e6a928f-bede-41b8-ac27-3a403fcf1f6a\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring start {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:25] local.NOTICE: Monitoring end {\"correlation_id\":\"3a656188-faff-47e3-be87-1ffd332c83e5\",\"trace_id\":\"c608c915-581f-4ea5-bbf9-8b17d4671ebd\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d76be307-9368-407c-a917-f426edf01e0f\",\"trace_id\":\"27511389-4408-4972-afca-0505938cebe6\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13e920dc-6440-4557-9f0d-e8368201e1f1\",\"trace_id\":\"87a8e095-dbb1-49d2-af82-0dbdc9a37579\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:38:00, 2026-05-11 12:40:00] {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"65873038-c685-4dd4-b9c9-5344c94f9f06\",\"trace_id\":\"66b27095-c459-49a5-b17d-65d23500d470\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"08f1f348-abfe-428c-840c-649c28b23bd8\",\"trace_id\":\"8cfddb1f-38bf-4a2f-8b81-34971c5af503\"}\n[2026-05-11 12:40:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9d9b6e5-f954-48fa-b5a4-ce4d209262e6\",\"trace_id\":\"730a7bbb-1883-4090-bfb8-5122e4ef8fa0\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6d04d263-358d-4d5a-a5cd-6dd953e84e04\",\"trace_id\":\"7889282e-984a-45b6-b43c-3e5f30ce66e4\"}\n[2026-05-11 12:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:19] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:31:00, 2026-05-11 12:36:00] {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5bcf1aeb-c490-4189-b9db-bb26fb564b8f\",\"trace_id\":\"85346e80-142b-463d-8cb8-66be8639f23b\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:36\",\"to\":\"12:41\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:31\",\"to\":\"02:36\"} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"47f80320-35e8-45ae-864b-e07c0cc5d5b1\",\"trace_id\":\"b5e25b03-ad40-4cba-a3f0-c2595473a2f8\"}\n[2026-05-11 12:41:28] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] 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\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:30] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"7d44ec0e-0956-4f28-beb7-ab1392d192cc\",\"trace_id\":\"0d5eb2aa-44c0-4a0a-bc11-c372f863d289\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:43:36.539454Z\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b969f192-f5ed-4908-a265-a6350e350269\",\"trace_id\":\"099229e6-e043-4a2d-8cdd-2cddcd144180\"}\n[2026-05-11 12:41:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e36f4a59-aacc-4f8c-bfd2-93e55c40d24c\",\"trace_id\":\"d38f7f47-4ca1-41ee-80a5-2b5071c36b98\"}\n[2026-05-11 12:41:36] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bf32e5d9-3c03-4709-bc7a-bf316a914f54\",\"trace_id\":\"17ab7907-4e16-4003-9562-f1ebdda4ae53\"}\n[2026-05-11 12:41:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:41:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:41:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2bf31322-b08f-46b6-8cf4-92a1b75b11f7\",\"trace_id\":\"09692315-8f88-4a8f-9cf7-c2279a404eae\"}\n[2026-05-11 12:42:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf84a7a-443d-4891-80da-b558a62455ae\",\"trace_id\":\"f8ae161d-8ad3-4c3f-8dea-50135cbc60f2\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a9749844-3289-4b1b-a125-b09e8ee7ce28\",\"trace_id\":\"573f6160-ab50-4baf-b2c9-ca5c440caf4c\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring start {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:15] local.NOTICE: Monitoring end {\"correlation_id\":\"0c7693d2-2be3-43d6-8f6c-f0c51bdf2f58\",\"trace_id\":\"a12e651f-e9f2-4269-89fa-9d702d1cccb4\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f1583bd-f995-4d23-9fe3-4f8db0073e30\",\"trace_id\":\"4e819c0c-86a2-44c1-9ca7-2766afd1d5dd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f8ab45-15ea-4b7f-9ad1-01df559b343d\",\"trace_id\":\"c08c5399-b750-4cb5-ba0c-32a1921f22cd\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:40:00, 2026-05-11 12:42:00] {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8d3a419-78c3-484e-8645-bbd58027f19a\",\"trace_id\":\"eca26feb-7f81-4eb3-8b53-7b4ed30f5da7\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] 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\":271.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"04f642bd-b7f8-4f02-8127-f974cfa14ae6\",\"trace_id\":\"c693ab56-5a85-48bd-bece-f723e6498a63\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9253379-3254-4739-9b9f-0b9556302ad4\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:42:47] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"6af0cc6e-d5cc-4ae8-b828-b5a8b502b389\",\"trace_id\":\"cef517db-84be-4d7b-ad21-70945b37c05b\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c67aae80-ca55-4a7a-8384-9faf868cb136\",\"trace_id\":\"da880439-5556-4f37-9e22-25f92d188f30\"}\n[2026-05-11 12:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"186ffd96-525a-4575-a399-0f4d9085ddc3\",\"trace_id\":\"0b4502b2-ba6e-40e5-badb-3186b0b93ee4\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"4617b638-c01e-4a69-812e-98ddf9a69737\",\"trace_id\":\"77960c02-0e5a-4434-9fa1-b5b5da7add54\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7836dd33-459f-45c6-a580-d78cbfbfc418\",\"trace_id\":\"8f25dc99-3592-4e5c-8718-c05f6e5ad3b1\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24ce2536-3bc0-4ebb-a29e-f31ece105663\",\"trace_id\":\"9ceae23a-db8d-4ab9-9f87-fcb9d6a089a0\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33c92496-01c9-4dd1-b351-f10f84e3485d\",\"trace_id\":\"771d9995-14e2-4fe7-9229-92927a8a4597\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:43] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] 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: 75cbe23e-e8aa-4dc2-a399-462ee4420200 Correlation ID: b4da2ce2-5084-4711-8a85-e0a84b213adf Timestamp: 2026-05-11 12:43:46Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:46Z\\\",\\\"trace_id\\\":\\\"75cbe23e-e8aa-4dc2-a399-462ee4420200\\\",\\\"correlation_id\\\":\\\"b4da2ce2-5084-4711-8a85-e0a84b213adf\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] 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: a6d425e9-17c4-4184-bdce-460d37632900 Correlation ID: a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd Timestamp: 2026-05-11 12:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:47Z\\\",\\\"trace_id\\\":\\\"a6d425e9-17c4-4184-bdce-460d37632900\\\",\\\"correlation_id\\\":\\\"a12d7ccb-c8d3-4a1f-9094-e7ebd5ea33dd\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] 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: bbb5ab27-21e7-431e-af22-70d76afd2000 Correlation ID: 54cf5965-e49c-4fe8-aa09-dda16dbff35d Timestamp: 2026-05-11 12:43:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:49Z\\\",\\\"trace_id\\\":\\\"bbb5ab27-21e7-431e-af22-70d76afd2000\\\",\\\"correlation_id\\\":\\\"54cf5965-e49c-4fe8-aa09-dda16dbff35d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] 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: 6339256e-38ea-40db-ac5d-43636f5e2700 Correlation ID: 64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e Timestamp: 2026-05-11 12:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:51Z\\\",\\\"trace_id\\\":\\\"6339256e-38ea-40db-ac5d-43636f5e2700\\\",\\\"correlation_id\\\":\\\"64f01bfb-a8c3-4ce2-ac10-79d2d9da1c9e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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\":\"40fd25b6-942d-452d-a499-5bc1f4c4df76\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] 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: 74008ab8-d6b6-462b-bd0e-92074db42800 Correlation ID: 276f953a-0988-461d-9422-a1978e679265 Timestamp: 2026-05-11 12:43:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:43:52Z\\\",\\\"trace_id\\\":\\\"74008ab8-d6b6-462b-bd0e-92074db42800\\\",\\\"correlation_id\\\":\\\"276f953a-0988-461d-9422-a1978e679265\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7fe697c9-82fb-4314-94d5-aef6039ca026\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] 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\":\"7cd50d04-9c09-477a-926b-83061b568c0e\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:43:56] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"6d26c44e-025d-4aa5-9db6-304a3df2e60a\",\"trace_id\":\"fd6a7bd5-f500-41d6-a3f5-48cc8ab08a4e\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8990bbf5-fe82-4fc9-9f98-9bcbfe128b3d\",\"trace_id\":\"963c0e14-5a90-4dc5-897f-999638900693\"}\n[2026-05-11 12:44:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"264eaef0-8cf2-49f1-bbbe-f869bf6cb3f6\",\"trace_id\":\"88508bd1-bce7-4b1e-a92c-f419f8a61a05\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring start {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:27] local.NOTICE: Monitoring end {\"correlation_id\":\"076d8dfb-b606-4b64-ac62-05d43c7a9584\",\"trace_id\":\"08e2935b-b45a-487f-953b-84f192d16c45\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b7d17dde-90f3-4ecc-aaa6-8a93b434400a\",\"trace_id\":\"0e4b70cb-134f-4b43-b2a5-7b69d013955a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"24d2f8b7-8afe-45d0-aa11-bf66316b3396\",\"trace_id\":\"8ba3def8-73d4-42a8-ae24-b873deef890a\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:42:00, 2026-05-11 12:44:00] {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6cdf9b19-d16c-47c1-b0de-8116efc85c5a\",\"trace_id\":\"94ac9ff3-f5ec-4648-bf9d-3deed123642b\"}\n[2026-05-11 12:44:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd389bc-e54a-429e-834e-61b19ac63e23\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23826968,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":245.51,\"usage\":23902576,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"20627cae-ebc4-490c-84c0-68ffc23207d6\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23858368,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:55] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":29.94,\"usage\":23933456,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"c995f539-efe5-41d5-a336-2c8a67f5c975\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23888624,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778498133,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1373.31,\"usage\":24034976,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"ee83be84-ab68-4f0d-94c9-90e2198525ed\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24016464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:44:59] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":22.59,\"usage\":24061248,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"834e0e1f-df57-4af7-a21d-846b86053c63\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24016592,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1398.26,\"usage\":24109464,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"bbdd00c8-2b7f-4e38-aff0-b4fc633883e8\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24088104,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] 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\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:03] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":31.33,\"usage\":24168832,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9cd80d28-db07-49ed-a1c2-f8a0e365bf9c\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24125848,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] 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\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:05] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":61.68,\"usage\":24167888,\"real_usage\":62914560,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"d4d95c14-a0d0-4b77-8132-cf61a864d641\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24126032,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:07] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:08] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 11:15:42\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:09] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:10] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:11] 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\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86d4039f-24a6-43fd-bdda-752cae55b075\",\"trace_id\":\"7be880af-d46e-49f8-82b8-5924fe620442\"}\n[2026-05-11 12:45:13] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 11:15:42\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:13] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":5628.24,\"usage\":24337344,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"e215d2bc-60f6-4dc5-b809-f670db7857a7\",\"trace_id\":\"12352cfb-2ff2-4e84-ae94-76ec64990a50\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"408e342b-f48d-464d-84a3-8a4fccff3720\",\"trace_id\":\"f72d4043-f5b5-4773-85ed-ca1d8da6b7e7\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring start {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:20] local.NOTICE: Monitoring end {\"correlation_id\":\"2d30be47-b0b1-4e0a-b8b5-cd450202880d\",\"trace_id\":\"2812bffa-9229-43fc-bbf6-79cecea5c925\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3db8cbc-bb9a-4a2d-a094-4ea0466c8b3b\",\"trace_id\":\"90cf3c4c-ab26-4577-8c9f-afeec6330cf3\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dcaeedfa-13dc-4116-b8ea-dcf12e1c01fc\",\"trace_id\":\"ff022c79-082a-428f-bafb-ffb1c1cfa583\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"966e4c44-087d-46a6-9cc1-d9cbe31fee7e\",\"trace_id\":\"20472a61-b6d1-4335-a91a-368fbafc452e\"}\n[2026-05-11 12:45:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"120cd5e3-0824-43eb-ac78-cfc38ef99d73\",\"trace_id\":\"5977250c-3d95-4c04-baf7-55d5f2c12db6\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cae42dcc-2dd3-430c-8a91-ce40ceebaa20\",\"trace_id\":\"ee5c0be6-abb6-4129-b0f6-02a803f536b7\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:35:00, 2026-05-11 12:40:00] {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff52302f-91b3-46fa-b1e0-08224760b4f6\",\"trace_id\":\"50fa0fa6-afa3-475a-ba2d-d823f5597ede\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:40\",\"to\":\"12:45\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:35\",\"to\":\"02:40\"} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"767c4ea3-2863-4b86-bddd-47d0d543b9cd\",\"trace_id\":\"b8d4a913-b7f0-476b-a2f7-587a6d25dbc2\"}\n[2026-05-11 12:46:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] 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\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:02] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"888ff0f2-b31e-4121-8fc1-8f057f6c550b\",\"trace_id\":\"1d45272b-e1eb-4904-b319-678f93f40f58\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:48:09.496609Z\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90466c54-393f-4c2e-a698-9e7f83b50b53\",\"trace_id\":\"cf333f1c-f9d1-429f-83cb-463a4485d10b\"}\n[2026-05-11 12:46:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812738,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812739,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812740,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812741,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812742,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Dispatching activity sync job {\"import_id\":812743,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e14cd84c-cf16-4462-99d7-b402b767783c\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812738,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"314ab941-a2cf-4bf4-9fa6-75630ce5d14f\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.ALERT: [SyncActivity] Failed {\"import_id\":812739,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"4a597ad0-48b3-45bc-8317-ec5987c035ee\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812740,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"438da0cc-e01d-445c-895b-5346839e3876\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:22] local.ALERT: [SyncActivity] Failed {\"import_id\":812741,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e272e968-331f-4a66-b4a7-f6f9f08c3515\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812742,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b9150205-8a0f-43b6-856e-2bff769ec03b\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [SyncActivity] Start {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:24] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:29:00\",\"to\":\"2026-05-11 12:45:00\"} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] End {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:25] local.INFO: [SyncActivity] Memory usage {\"import_id\":812743,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25442000,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"c7c02bd3-e1e5-4734-b70f-f6eb089120d1\",\"trace_id\":\"e16753f0-4c58-49f9-ab1e-19b26b1d2bee\"}\n[2026-05-11 12:46:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0346e786-2563-44fc-a13c-5f1787538233\",\"trace_id\":\"d839f681-855d-4f8d-a2ac-f6af79b8dca1\"}\n[2026-05-11 12:46:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dee73d2c-bdd6-4e73-8303-9b915466101c\",\"trace_id\":\"8fb41652-d98b-4387-95ae-378e191d4765\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:46:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f4c99a0-a910-4165-b826-2fec7c4111df\",\"trace_id\":\"f498d542-27b5-4668-8f81-9c19f3b82469\"}\n[2026-05-11 12:47:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:06] 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\":228.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:07] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"7bd9aaef-eaa2-4ead-9b6a-a9ac5745fde7\",\"trace_id\":\"0c0fd329-f61e-4a18-8770-7b7214f3ce1e\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ae04424-dc91-4c3e-a688-a8a520c7c2e2\",\"trace_id\":\"97d7aa88-b42b-42cf-9f6b-b9d54e232360\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f760468-fc36-4508-adfe-c5f240cb0fec\",\"trace_id\":\"8f86bc50-8b95-4533-84b0-1e8ab0c04546\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring start {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:22] local.NOTICE: Monitoring end {\"correlation_id\":\"489089ce-8bf4-4ed8-aaed-83c8ac3b3b3e\",\"trace_id\":\"261b4f71-0350-4b65-97d9-9004e023fab3\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1fa5112-897f-49a0-8939-13e593afc447\",\"trace_id\":\"fa69dca2-8695-49a2-b9fa-114d05e3f387\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a090d8fe-acd3-4b32-aa48-08772ad5bf37\",\"trace_id\":\"f01944c9-a3a5-4c79-bee4-63e4317f5dfb\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9cf7f2a-85a0-49fa-b634-b06bf83554c0\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:47:41] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"0574fa9b-5bc5-4486-8f14-eff5332fc4a3\",\"trace_id\":\"6876026f-1013-4a0a-9b17-914a3ae58d04\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d776ef6-38be-4ab8-8bce-f7982f89bdee\",\"trace_id\":\"ac6bd687-ca1b-4f51-8960-f0582a9f03c4\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50783c0e-040a-41d8-a097-b48d6fe5e789\",\"trace_id\":\"eddd1fb7-6e33-42a2-bc96-20b36fbd4218\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring start {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:17] local.NOTICE: Monitoring end {\"correlation_id\":\"74523c44-c5c2-41ae-a071-0a855253c2a4\",\"trace_id\":\"7b6ae353-a43f-48c2-a4f2-ea36886f0095\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"769235ff-adf4-47cd-adca-67b5b8ac7b23\",\"trace_id\":\"82cb4a65-4fdf-4c66-ab18-6ea2537798f2\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb41424-1ae5-4d5e-94b6-47f4430a8193\",\"trace_id\":\"b8cdf2e0-aa0c-429f-bea2-2ee6bc64b311\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:46:00, 2026-05-11 12:48:00] {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06a20de6-c66f-4c0d-90d3-5d9168d5fef8\",\"trace_id\":\"43bd5483-44ec-42e0-84b4-92edd7d084e7\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:48:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f326d2-a491-49a5-b7d0-e8dea3dbb227\",\"trace_id\":\"790d4388-07d6-4b23-b0b8-1be65299ab66\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"228be68f-ffcd-44b0-806e-d1d1175abd7f\",\"trace_id\":\"e5f8da62-3f7f-4f47-b8d9-8deba993ae36\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8b64fda-f106-426e-8b95-c2c7139f228c\",\"trace_id\":\"452d2a22-10d2-43ac-a8d1-9e2dcc5cab0b\"}\n[2026-05-11 12:49:17] local.NOTICE: Monitoring start {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ed2e5750-f4f0-41c4-ba71-9b85d4eabd0f\",\"trace_id\":\"0d06e89f-e00e-42e3-a8cb-09fd88372eab\"}\n[2026-05-11 12:49:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a00c0435-18a1-4061-8227-eb8f878e29d0\",\"trace_id\":\"6f1342e2-e9c7-4e1a-b177-322a920d53df\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:49:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"86e3c595-3411-48c4-a0f7-c54940677141\",\"trace_id\":\"21c88c03-af75-4f8d-aa32-b09e1f594a06\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0b57497a-53b1-4a32-a6da-06fcf73b0b2a\",\"trace_id\":\"2ba53a97-280f-4669-8974-69726a819fa9\"}\n[2026-05-11 12:50:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5852b3e5-9f90-4a2b-a431-77efe6947819\",\"trace_id\":\"20005c85-902e-49ae-ac11-33e437461d28\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring start {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:31] local.NOTICE: Monitoring end {\"correlation_id\":\"92c9c3cb-3e72-4e9e-b9ab-9bc420d1bdd8\",\"trace_id\":\"21345f63-83e6-44b6-b0e5-950dd5daae14\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3722715c-5634-4e21-be1f-b9761a11f92d\",\"trace_id\":\"655a02f1-2476-4c79-9ebb-70136a54989c\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0ae6c4d-bee8-4247-9247-0bd4b4e54d16\",\"trace_id\":\"f12308b8-6240-4f0f-8001-eb991af7a449\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:48:00, 2026-05-11 12:50:00] {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1aef586a-70e6-472c-8855-be25a1bcebd4\",\"trace_id\":\"7383dc14-1423-4c19-8188-43d954f198f0\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a6d095d-5220-484e-860b-26ff21bcd305\",\"trace_id\":\"cf9ff408-c72e-4b98-9f67-fb7e2a9abbe3\"}\n[2026-05-11 12:50:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:50:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"391dea49-ed4f-41e3-97fb-17e2a305cc66\",\"trace_id\":\"61ccab53-6ded-42c1-ba75-91308adcc0bf\"}\n[2026-05-11 12:51:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"94dc8912-6e32-4085-b4f5-923d235942dd\",\"trace_id\":\"7f9da85c-9fea-4331-8f60-9faf3555e9e7\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:41:00, 2026-05-11 12:46:00] {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d99e2e78-6104-404c-a4c3-843eeb7dabc1\",\"trace_id\":\"869fd24f-6bab-4088-94f1-fc8ac03084b2\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:46\",\"to\":\"12:51\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:41\",\"to\":\"02:46\"} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58a88182-b00c-4494-8cbf-4ee0929e201b\",\"trace_id\":\"0e2515cf-09ef-45d1-8919-9fe046a474b8\"}\n[2026-05-11 12:51:13] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] 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\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:15] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"3e88b7cd-4af9-4222-8354-4b8f697285f3\",\"trace_id\":\"0c0c71e6-0143-43e7-bb56-412dd2c2e0ea\"}\n[2026-05-11 12:51:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T12:53:29.135827Z\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf3b85e7-bf94-4bad-b034-45899029fb46\",\"trace_id\":\"8ebbced3-1771-4640-8e58-b20c4adc6535\"}\n[2026-05-11 12:51:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"62fd3cf7-c6eb-4317-a2e2-56d791e4f57d\",\"trace_id\":\"418ca9b2-4855-4b28-80d2-ea8cf2de6e64\"}\n[2026-05-11 12:51:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3512a58e-9efe-4da2-ab9f-d0b735484d23\",\"trace_id\":\"5b35f66c-dd63-4a02-8f64-f0ba72826a3d\"}\n[2026-05-11 12:51:41] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"877bbe1f-4978-420b-aa01-402fd93724be\",\"trace_id\":\"43b46046-4624-4d9e-b200-fff7749a1176\"}\n[2026-05-11 12:51:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99c962d1-418e-4057-a69f-f1a2b13ccbd1\",\"trace_id\":\"0bb36197-97de-43ca-b6f1-7b1a0ef8c1ad\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49b1f4c7-d423-4c4f-89a2-aba08db5f01b\",\"trace_id\":\"14a9780f-5a8b-4d3a-a3be-fdd344601c64\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring start {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:13] local.NOTICE: Monitoring end {\"correlation_id\":\"f223a6d1-1e7b-44a0-bbf2-bbd78f108896\",\"trace_id\":\"e4deb44e-091c-426b-a629-4dde9218fa6f\"}\n[2026-05-11 12:52:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"656854f1-fc28-4cf7-956d-bba8814b7942\",\"trace_id\":\"ce62f2be-a071-4705-8528-e83a32e7db82\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e13d1652-7bca-4996-9f9d-1b9f10d86b4f\",\"trace_id\":\"17c0a491-4ca3-4624-aee9-475b1907e223\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:52:00] {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db306fdc-8027-4055-83c9-3d71b6d7ef4d\",\"trace_id\":\"d311460e-32d5-47a0-b1f2-07f643b95fd9\"}\n[2026-05-11 12:52:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:26] 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\":474.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e0275d48-0053-4811-8f69-7a087bdf45dd\",\"trace_id\":\"524c9dd8-6e05-491b-a916-3dc386ced5f0\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db456441-150c-40da-95d4-307c467e8940\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:30] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"865b33b6-fb6d-4657-84ab-e27244c6acae\",\"trace_id\":\"f3a9a065-32db-4cee-a227-a0c28480d165\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:52:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95aefcc4-5bf7-44b1-ac66-7d2fd7be751e\",\"trace_id\":\"f920ad20-28f0-4dec-a7a0-009d23fbecab\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1af4629-83a3-420d-8795-1fd7b573fd28\",\"trace_id\":\"2f540cb3-3d8f-405a-9000-6d588ea71f98\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2e1089dc-a722-4232-a615-33af8ab158cd\",\"trace_id\":\"917c2cb2-7539-4639-8b69-b27d3970802f\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring start {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:31] local.NOTICE: Monitoring end {\"correlation_id\":\"7bc6d997-0433-498e-97fb-aac4b561b244\",\"trace_id\":\"ef13f2b5-1cd0-4974-88bd-c8c8787787f6\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4687678a-41b0-4f1e-8c5c-9c6332e3170a\",\"trace_id\":\"fbbd336e-0585-49db-830b-c0ce2e97c266\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7dc5d803-54b3-4b2a-948a-074efb29f7a7\",\"trace_id\":\"256c7fbf-a236-4bd0-a30d-225da1a5e183\"}\n[2026-05-11 12:53:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:53:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c63f42c6-afeb-42cd-87b0-eb08bc02b6e7\",\"trace_id\":\"057700b6-09b6-4f02-8ab9-afc12b53f13e\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0c9bb87-d145-449a-aedf-793897d9c4c8\",\"trace_id\":\"4d08e2ce-dcde-44e7-a59d-3f494af0bd32\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"00ff82b8-6e74-44ef-85d5-ff12e7b42467\",\"trace_id\":\"1efd4a91-0a42-4b09-9241-9e2beae99e88\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:33] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"f8db6dff-a3af-4785-855d-bd04ed3ed096\",\"trace_id\":\"f24b6e85-6f89-42b8-b4e4-91b2a82e1a7d\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"37dd4a6c-1fc8-4331-ad24-b1cb13b583ce\",\"trace_id\":\"d39aa1e8-6b1c-48eb-a6fa-f38c876ca543\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"e1f9dd5e-db18-4167-a3d9-d6a017f64442\",\"trace_id\":\"64407c7f-5ad5-4d40-a02b-e06c3988f345\"}\n[2026-05-11 12:54:34] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"abdea40d-435e-4d87-b225-38b24cc6344b\",\"trace_id\":\"3b31770a-e7c6-4b45-872d-e4391cb4278d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"571d5566-2335-4bdb-920d-c55467ca1712\",\"trace_id\":\"599aca3d-a7b4-424d-89b8-da6461cab370\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"e954700b-88a6-4955-9977-edcd8e5c93a4\",\"trace_id\":\"84ae5b92-3c87-4a95-ad91-7353e0cff15d\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:35] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"fcdf2f28-0489-4742-9561-c2a20665c51e\",\"trace_id\":\"8d3fbbbf-56c9-456f-ad9e-ffd2ad6cfd3b\"}\n[2026-05-11 12:54:38] local.NOTICE: Monitoring start {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:39] local.NOTICE: Monitoring end {\"correlation_id\":\"a8be3ef9-4dcf-4730-8dc6-509a8dc93ace\",\"trace_id\":\"e383025b-076b-46f1-8dd7-5d9143ad3695\"}\n[2026-05-11 12:54:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1921e478-1c59-44bd-a25d-38938aab926a\",\"trace_id\":\"519f3980-38c3-4dc2-b158-3999ee8f47be\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2eca233-9902-4414-95d9-edd6f425bcbd\",\"trace_id\":\"29e6d9bc-e635-4e28-be97-8da6b20a5ab7\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:52:00, 2026-05-11 12:54:00] {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:54:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5797ace0-2829-4b5b-8598-1a58d489cca4\",\"trace_id\":\"8d5b31cb-bc2b-4bda-acc3-b64c5ced70eb\"}\n[2026-05-11 12:55:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bbbd3f61-3f69-427a-ad42-e0bf21f332fb\",\"trace_id\":\"1ed1d0aa-0b53-42db-8898-bc6028dcf6b5\"}\n[2026-05-11 12:55:06] 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\":\"0bba9dee-e11e-486c-a2b0-9c5cc7727dd8\",\"trace_id\":\"503f418b-706e-4530-9d36-8d8963a7052b\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d9e3c7fa-c23d-4eca-b031-433e040b9c83\",\"trace_id\":\"fbee6315-3879-4beb-9238-dc7868160885\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6811a21c-320f-40e4-adf5-e4a973024886\",\"trace_id\":\"ba63e30f-517e-4031-89f3-9cc39e6e5ea7\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring start {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:12] local.NOTICE: Monitoring end {\"correlation_id\":\"3c2a21d5-8845-4b23-afb8-6f094d5c9fba\",\"trace_id\":\"e6fff20c-4066-4c1e-9d20-54c2da5f7f44\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae60dfc4-8687-4853-a0b2-0f96f1c2a489\",\"trace_id\":\"7d37e315-814b-47b2-a512-585a2eb66f15\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51e7381b-58c5-4f6c-87cf-d087a982652a\",\"trace_id\":\"6534a7b7-6305-41d5-a643-f3c0e14c0b26\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:54:00, 2026-05-11 12:56:00] {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e1f63aef-2af6-4823-9ceb-b7d4da7f0329\",\"trace_id\":\"73724fe8-11af-41cb-b55c-8a31638b379e\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a027ef1-d1bc-46b9-9aa7-37d2ef3c4bf1\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24323216,\"real_usage\":62914560,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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.38,\"average_seconds_per_request\":0.38} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":425.55} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1641.74,\"usage\":24523328,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"05af9baa-9cc7-4520-aaca-a16765976dce\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24497992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":133.88,\"usage\":24475192,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"781b74c2-a11c-475f-b2b9-62c36145f8ec\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24435944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:24] 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\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":279.28,\"usage\":24497984,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"0b248ea5-6124-4c86-9340-975e5add6c66\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24455488,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:25] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":100.02,\"usage\":24471608,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"8a90cba2-a8b2-44ba-8715-ea3515ab1934\",\"trace_id\":\"562958bd-7185-4e4d-9127-ece685e5015c\"}\n[2026-05-11 12:56:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de0629ae-2f96-4bdd-8828-9238ab100a4b\",\"trace_id\":\"ec67a07b-f71a-47e4-a047-93cfc5c875bb\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c702a967-f054-4d71-bc81-35306b2464ae\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"d714d7ca-7da0-4e1f-9847-ce912092716b\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:56:38] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"33be6d30-2ce9-43fd-b1cd-b09b8db09e50\",\"trace_id\":\"bae43efd-c04a-42db-8082-6116d320b676\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3cd76c2b-1df2-46f4-80ca-11116e49faa7\",\"trace_id\":\"3ebaa5f1-a345-4004-ac87-212a4cb725d0\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03bc3c99-69f1-4522-be3f-562f793c5073\",\"trace_id\":\"de921d11-d6ab-4b89-b22a-50abe1e9a9bd\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring start {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:17] local.NOTICE: Monitoring end {\"correlation_id\":\"113f8d3a-8b62-4b20-9d0a-7697a887342e\",\"trace_id\":\"fdd0489d-da38-4e7e-a86e-03cd51f4b8b0\"}\n[2026-05-11 12:57:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b31f6833-5840-4515-a57c-52cb790bdde3\",\"trace_id\":\"3093819c-1a7a-4c22-9aa4-8e2d26b0fd02\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6dd12d3-a4d6-4a6d-9154-dd0ed404133b\",\"trace_id\":\"737774ee-74d4-4cb6-961c-af938c3dee95\"}\n[2026-05-11 12:57:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9c36853-5dcb-4606-bfc1-9a4101d735b3\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:57:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c6145b9c-1c18-4073-ae56-415227cda914\",\"trace_id\":\"d1b9ac7f-39c0-4858-a72b-e304627b1f4d\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33f3ea51-b4bc-4908-a7fe-766ce40a659c\",\"trace_id\":\"c78034d3-66cf-49bb-bb29-31d3f52c2a5e\"}\n[2026-05-11 12:58:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"909ea64e-f19d-4601-af88-3b1aa5fbc04e\",\"trace_id\":\"88e50be9-3304-4818-bc64-d7b56c79357b\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring start {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:14] local.NOTICE: Monitoring end {\"correlation_id\":\"698a81fe-c45f-43d3-b47f-16174e7cb759\",\"trace_id\":\"e2c1ec2b-95df-42d7-89d9-269970b6cae6\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16111d48-75cf-4795-8b70-fe73c0ca2591\",\"trace_id\":\"ed0aaf58-8bf2-42da-bec4-c28e0ad1ee73\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ca9d5afa-2399-452d-bab8-f60672b11a16\",\"trace_id\":\"ec2657c0-6359-41e4-b31c-6e7aaf04ad76\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:56:00, 2026-05-11 12:58:00] {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"adb25781-a8e8-49a4-8684-e76cdbc274c4\",\"trace_id\":\"ebba9f73-c1d4-4ff6-95ee-070217b73955\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.NOTICE: Calendar sync start {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"78ab535d-914e-447f-ac2c-74b9768ea6e7\",\"trace_id\":\"7531a2d8-75c9-4a9a-ab70-23a1d4f50f79\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:24] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:25] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:26] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:27] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: f8984399-3dfa-4665-988e-cdbbbf7c0300 Correlation ID: 9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91 Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"f8984399-3dfa-4665-988e-cdbbbf7c0300\\\",\\\"correlation_id\\\":\\\"9422b60b-ac2b-4c65-ac6d-81ed2a9b4d91\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] 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: 0357fa49-cb85-4954-a744-d63c7ee42500 Correlation ID: 1d6ed423-0b6d-4511-89a3-9d86c4ebd39a Timestamp: 2026-05-11 12:58:28Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:28Z\\\",\\\"trace_id\\\":\\\"0357fa49-cb85-4954-a744-d63c7ee42500\\\",\\\"correlation_id\\\":\\\"1d6ed423-0b6d-4511-89a3-9d86c4ebd39a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:28] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:29] 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\":\"4de7041a-1c8f-4122-aa24-35a492f18763\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: 05946ef1-885e-458f-a6df-b6b39a592300 Correlation ID: 4126950e-dda6-4c32-a288-027febde348b Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"05946ef1-885e-458f-a6df-b6b39a592300\\\",\\\"correlation_id\\\":\\\"4126950e-dda6-4c32-a288-027febde348b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] 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: eaf2b619-4871-4580-be50-67f3b3890300 Correlation ID: a1d2f752-8ff2-486a-861d-b2f132faf0eb Timestamp: 2026-05-11 12:58:30Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:30Z\\\",\\\"trace_id\\\":\\\"eaf2b619-4871-4580-be50-67f3b3890300\\\",\\\"correlation_id\\\":\\\"a1d2f752-8ff2-486a-861d-b2f132faf0eb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:30] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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: b137061f-7efd-4b08-9a4f-a6d0177d1e00 Correlation ID: 5a3bacda-b8ba-44f1-83dd-6c49395a63da Timestamp: 2026-05-11 12:58:31Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 12:58:31Z\\\",\\\"trace_id\\\":\\\"b137061f-7efd-4b08-9a4f-a6d0177d1e00\\\",\\\"correlation_id\\\":\\\"5a3bacda-b8ba-44f1-83dd-6c49395a63da\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c7aa5334-0dff-4837-a86c-a92eba87beee\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:31] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] 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\":\"77bad53b-e2f0-45f0-ae60-da5d49f5b1ec\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:58:32] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"7812b2b4-811b-4efd-a538-6f43439906d6\",\"trace_id\":\"48c7cc51-a380-4d85-b22b-3763c246ecee\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9016b18b-f153-4362-85f2-d20b39ca01ff\",\"trace_id\":\"1ae38d43-c01f-49ba-ad58-ead942bf76d0\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8c8ea46d-18f0-4292-aa1d-c1287779ea57\",\"trace_id\":\"6dba5ebb-1edd-472a-9808-91f5ba494f82\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring start {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:14] local.NOTICE: Monitoring end {\"correlation_id\":\"b8a30ac0-11bd-4f25-b847-7e68a5a51f25\",\"trace_id\":\"133840a4-1967-4a49-903a-95baa58ab687\"}\n[2026-05-11 12:59:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e7ba153-cf73-41d3-8734-45742f38c0a8\",\"trace_id\":\"32968257-7f34-43f7-af2f-b6529403b271\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 12:59:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b007bbc7-12d7-47fe-ae8e-55d376f8e3f6\",\"trace_id\":\"2c6d1eb7-6f88-4170-843a-5a03603317f7\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b411975-925a-4666-878b-e4e176e0418a\",\"trace_id\":\"8a9073d6-f2d9-42d9-8e63-056a13fcaf48\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c520293f-c394-42f8-b3b3-839bf83c2f74\",\"trace_id\":\"b1bcc648-8bd9-4f84-8c3d-42b464f85a58\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring start {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:13] local.NOTICE: Monitoring end {\"correlation_id\":\"636e612a-213a-4152-8667-c8272bc02ceb\",\"trace_id\":\"6aba4eda-fb40-4ed8-89e5-545ee7de3990\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"399e35bc-47d8-4a8b-9267-c184856cb447\",\"trace_id\":\"5a4c05ea-7c08-46e0-884d-1b2a82639e6f\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b92ddd05-c56f-45b1-9f67-415f040bfc98\",\"trace_id\":\"b9321075-344a-4f8f-8ba6-0548ccb0e4f0\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 12:58:00, 2026-05-11 13:00:00] {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61d8f2c5-0012-4b2d-a880-087f3b9daa38\",\"trace_id\":\"96e71335-eb60-4b88-be9a-844d6df29582\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4eeaaf2e-393f-48f4-a229-263b986fd501\",\"trace_id\":\"e1dea41c-e47f-4b01-8417-1a13f1968f50\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a9a6d27-32ff-4bed-b4f9-6bf09cb7ed8d\",\"trace_id\":\"c3369244-c0a6-4264-9fa9-4efe28f41cd5\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8acca4b6-250d-47c2-a0e9-20299ffb3e83\",\"trace_id\":\"3ed54634-b3d1-4502-88c3-fd8e033df22b\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:50:00, 2026-05-11 12:55:00] {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"252b4c1a-ab21-4ff2-8e2e-7d3555e738b1\",\"trace_id\":\"8b311b78-40a9-4364-995c-1d37a250e6be\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:55\",\"to\":\"13:00\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:50\",\"to\":\"02:55\"} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c89ecf27-43db-4558-9e13-69249c6222c4\",\"trace_id\":\"640704ff-9534-49e9-8ab3-6f358dc6a5a9\"}\n[2026-05-11 13:00:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] 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\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:00:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0601bc63-95eb-4f9a-b7f7-85dfd403b066\",\"trace_id\":\"6fcc768c-2da0-451d-b59f-fe38a94ad999\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:03:07.453480Z\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a53408fb-81f4-44d4-bbe0-0c842b08fb1b\",\"trace_id\":\"cc77d26c-0e66-46bd-ad18-dd8af05856f2\"}\n[2026-05-11 13:01:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"014f294d-ab85-4147-871a-36cc8ceb4c8a\",\"trace_id\":\"9ac8a7e2-e52b-4dac-9371-a7fd65eaee7f\"}\n[2026-05-11 13:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9fa2cc-b242-4171-a419-5238a26e717c\",\"trace_id\":\"0f3f77f3-5a0f-4853-b86a-958ae2fb549e\"}\n[2026-05-11 13:01:13] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812744,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812745,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812746,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812747,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812748,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Dispatching activity sync job {\"import_id\":812749,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f19f86f-1c27-43f3-91ad-e9c57c76a2d8\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812744,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fd1d829a-df52-4d6c-8bae-c2dca4736441\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:23] local.ALERT: [SyncActivity] Failed {\"import_id\":812745,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"86b02286-32a7-4b92-8d4d-d53c74668d7d\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.ALERT: [SyncActivity] Failed {\"import_id\":812746,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0c5e9d37-c470-4b7c-9849-6fd08d0b426f\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812747,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"917f2057-cc33-4015-a5fa-0e07f603c156\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.ALERT: [SyncActivity] Failed {\"import_id\":812748,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"b6d6b475-5b9c-4c6d-91f7-5f8688209c4c\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:25] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7fe3f0-fa7c-452e-9766-e145b7a05091\",\"trace_id\":\"1d1a1b26-46c0-4b88-bdd0-eb473ee178a6\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:26] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Start {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:44:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] End {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:27] local.INFO: [SyncActivity] Memory usage {\"import_id\":812749,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26814592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"cd03312f-a784-4f23-b2e3-573c146b4fe9\",\"trace_id\":\"0810ad98-6730-4a9e-b86c-daa387e6355a\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce6b532c-28e1-43b6-b965-57b6531518d5\",\"trace_id\":\"dfd096a5-4629-4954-b4d7-e59fc2ea42b9\"}\n[2026-05-11 13:01:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0dd1547-6c28-4868-b494-8e3fe52d9c56\",\"trace_id\":\"08a25137-e4d2-42f4-85fb-49a39133525e\"}\n[2026-05-11 13:01:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80a2c047-71ad-42f2-9887-85d32b12c7d8\",\"trace_id\":\"6a04a9e5-54a3-4865-b510-76508231b755\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"478df0b5-17c9-4737-9b23-0c5a45fd5f85\",\"trace_id\":\"4db63f12-f692-4a48-b09e-e6c33288c2ea\"}\n[2026-05-11 13:01:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a053eee9-821e-4e61-b5e7-c8cec1db5a7e\",\"trace_id\":\"59d20a23-a7ab-414d-8c8f-79ea5098c5f9\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:01:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea5a6f64-4d08-4ac1-92a4-bb2f46d8d7c7\",\"trace_id\":\"e370e7b8-7062-4a02-a21c-1a21187de06e\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] 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\":308.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:04] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"77c6f901-b65e-4c44-b127-45e6229041f4\",\"trace_id\":\"59d1cadf-2500-4ccf-82bc-c10c320b8910\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Dispatching activity sync job {\"import_id\":812750,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"665548af-b7a2-4335-b3ca-12f43fdb9ef1\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [SyncActivity] Start {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:09] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:00:00\",\"to\":\"2026-05-11 13:00:00\"} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] End {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:10] local.INFO: [SyncActivity] Memory usage {\"import_id\":812750,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26972592,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"7901435b-8cfe-4c4a-aba2-cc2477c551c9\",\"trace_id\":\"ee12832a-bbc4-43ff-9847-386d0d72a7f4\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3a72d52-7ff3-4917-a9c9-70854d0eca9e\",\"trace_id\":\"86ffd853-4350-4c83-9da9-f0c8873ad274\"}\n[2026-05-11 13:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8d80d2c6-e853-49eb-99d0-14ad0ae47645\",\"trace_id\":\"7575da40-a6d2-43b7-b786-53286befdde6\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"209c7906-b061-436b-8ae0-567f4afbb52c\",\"trace_id\":\"8ca0024e-325b-4d78-864f-12f7fc9de3ff\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c391f567-e748-4358-b256-6f53346abf15\",\"trace_id\":\"f3fc51ed-f1c5-489c-bd4d-9573159bf64f\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c52d61df-d304-4078-bef8-0b0650ef71f7\",\"trace_id\":\"2f3efaaa-a79c-43cd-902d-39d90c6c3c8a\"}\n[2026-05-11 13:03:11] local.NOTICE: Monitoring start {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"fa06f5b8-a8f2-4498-a2e6-3932f1a29774\",\"trace_id\":\"70e4f03f-09b9-4d35-8aba-18aeee77f076\"}\n[2026-05-11 13:03:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a8d8add-ff62-4eec-a06d-b7c4d4c4ac58\",\"trace_id\":\"294153ba-77ea-44bc-8e91-7c28d7702da7\"}\n[2026-05-11 13:03:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"35f97425-7575-4cdb-92b6-3c8ad7ddc001\",\"trace_id\":\"f64e78c2-f6b5-488c-83c8-03a03513bc49\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:03:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1ca642b4-8a55-4334-9a19-26801fff9ab0\",\"trace_id\":\"3d3262a2-44aa-42f3-a275-42927ed8e14a\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4dabf7b-19be-4066-bf64-56730fd4ef5e\",\"trace_id\":\"432c7cec-15b8-4538-9cab-b730a07898ac\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9272941-95c0-4bcc-8afd-ebf48babf6a0\",\"trace_id\":\"ca1b5f58-d6ed-4e55-8066-3cf88fd08280\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring start {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:10] local.NOTICE: Monitoring end {\"correlation_id\":\"36dfee26-71ef-42b1-9df7-52c8f91a585a\",\"trace_id\":\"c141d0fa-d59b-47c9-9707-497cc55bab5f\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e32d2f2-ce75-474b-8492-beac30e725c9\",\"trace_id\":\"725508e0-bb34-464e-ab64-5429d9398918\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0aee8c7f-89fd-41eb-bb9f-78327728b054\",\"trace_id\":\"257db2c1-0a3b-4794-b392-47b56448bbd3\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:02:00, 2026-05-11 13:04:00] {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:04:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a6fa4af9-83f1-4166-9f7a-8288662585a1\",\"trace_id\":\"43b33dc2-e044-4893-949f-ae57468d9944\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d66fcd-2695-4ac0-bb94-af0eb8bae3e5\",\"trace_id\":\"d84dc58f-8d42-4265-80eb-d14e3e3a26b8\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1be6fbb-ca10-4d1c-9f1e-abfdfbe1489b\",\"trace_id\":\"b8e8fe6d-bd38-4af7-bcd2-1dc04a97fabe\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring start {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:15] local.NOTICE: Monitoring end {\"correlation_id\":\"3faaa273-9dd0-4811-80c1-6fecb047f942\",\"trace_id\":\"3ae6ff1c-6635-4d51-8b41-b3cd85544c5d\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50bf3e4f-20cd-4ab4-8962-ae1688071b25\",\"trace_id\":\"18b03fba-74b6-4c85-b90d-3a7aa191230f\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"583dcae5-7e91-499b-aa74-560379e15b06\",\"trace_id\":\"f6846a39-c85b-4ec7-b818-6a5d404343b7\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f48370f0-9581-44a7-a95a-3c8011d4b2a2\",\"trace_id\":\"9033e337-60e8-4c8a-9609-f68b239e4243\"}\n[2026-05-11 13:05:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8353a18-adf1-4992-a18b-70cd49b88ba8\",\"trace_id\":\"41e196f7-b023-4320-9a52-f87e31817c96\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91eecd7c-481c-4c52-800d-bdbb2cc27c9d\",\"trace_id\":\"1e4d636f-b2c7-4891-b00d-657cd0c91366\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 12:55:00, 2026-05-11 13:00:00] {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c211d04b-b032-4edf-9ce4-a60f8fd534f6\",\"trace_id\":\"5e1d1a50-e1cb-4167-a8ac-d5481e8e2767\"}\n[2026-05-11 13:05:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:00\",\"to\":\"13:05\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:55\",\"to\":\"03:00\"} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28d1bbd3-dd52-41aa-a534-2d340c69e4ca\",\"trace_id\":\"b594aa01-31ba-4c0b-a40f-81bb8a81cd32\"}\n[2026-05-11 13:05:53] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] 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\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:05:55] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"6e120c96-e072-4643-a3db-9f3796cf8cd6\",\"trace_id\":\"1b476c3e-3379-4876-9509-51e6933480d5\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:08:00.727065Z\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9fd7b40d-333e-4b8c-bdbb-7ba09c1f7042\",\"trace_id\":\"0ae17cc6-8754-461a-8a12-b5adbcf0acd3\"}\n[2026-05-11 13:06:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d982cc63-a8e4-44b8-a661-15eeb2e91f06\",\"trace_id\":\"bc19cebc-4fc6-42d9-aff6-0f2ea242042f\"}\n[2026-05-11 13:06:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:57] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":364.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:06:58] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"4f8cb74c-b8c6-48ae-b0b3-110e938cbd29\",\"trace_id\":\"fcc5dcb8-bc41-45f0-a0c5-f43eb68a4c2f\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"71cf294b-24a0-4442-91b9-8d60bf2549a7\",\"trace_id\":\"b9adc320-2469-489c-ae89-dde2f31546c5\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"f5405558-3757-4c49-9ddb-0d9e65a522b7\",\"trace_id\":\"259d2e4f-93d6-4316-97d5-1336df4eb47a\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"380265a6-c0fe-42d5-b6c2-9478dc36eff4\",\"trace_id\":\"f8017a45-7177-4159-8b06-bfd844b645c3\"}\n[2026-05-11 13:07:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"fc51dd0d-9aac-41f8-88d5-5e5bcedf0a79\",\"trace_id\":\"088d5e3e-d501-4d51-9dc9-72752075f977\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"c54d462b-4ba6-407e-9934-cf2e56d73a92\",\"trace_id\":\"35e7f838-e5cc-460f-afbc-3fcafb8107a0\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"4ed21952-2e1d-4592-a496-46afbeadb6f3\",\"trace_id\":\"c765f2c9-62af-443d-b0f0-264a10299b28\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:20] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"420ad3db-40b7-4ead-ac9e-7662ea57591a\",\"trace_id\":\"d71d611b-2601-4f64-bc17-d2b09eb63f38\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e9a59b7-f17a-48d7-871b-5cdc8b982881\",\"trace_id\":\"48413442-6b23-43f0-8d17-c68de6854366\"}\n[2026-05-11 13:07:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"84701891-dd20-49fb-b6f9-2785d19dd1d2\",\"trace_id\":\"925c4263-cd13-42dd-b177-f778803b250a\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring start {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:42] local.NOTICE: Monitoring end {\"correlation_id\":\"59e5f473-5304-4c1e-aa83-df2d8f9afa85\",\"trace_id\":\"d9c1a808-2052-43a0-bfe3-39b0876146cd\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0ef429fc-8dd1-4a72-a783-27326e8db6f5\",\"trace_id\":\"b2a1c142-3c97-411d-b7b8-c4881db90931\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c7aec17-fcbf-4d69-876c-f48aa44d6c77\",\"trace_id\":\"499ac927-79b4-4e5d-b987-baa9d42fa00e\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b14dd76e-5102-4d0f-80b7-c0497d10937d\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:52] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"be43af96-b925-4f72-b516-f43964780e29\",\"trace_id\":\"cdf3a59f-ae5e-46f8-b6b1-124e667acb1b\"}\n[2026-05-11 13:07:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:07:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a7b9bba-26fe-4fa9-be66-fefec5e39477\",\"trace_id\":\"2e83353a-e021-4b06-ace8-b88413bf3802\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3b9711f-fe80-4943-bbbc-a3d829ea7643\",\"trace_id\":\"869dcbe2-fafa-49e5-a18b-b2e13e89456b\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7b512885-abf1-46c4-aa42-4f00e3094f32\",\"trace_id\":\"642c7c57-8ccd-48e4-9d92-eebd7ce06b12\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring start {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:09] local.NOTICE: Monitoring end {\"correlation_id\":\"a65c677d-f981-4aeb-936f-b6dde09b17ef\",\"trace_id\":\"15f9409d-9eed-4530-9576-b3a6c1d44c77\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a992bfd-6fa2-4548-b89e-76ec023800d6\",\"trace_id\":\"29dfcc2c-f68b-42c7-93b9-34fd466fef22\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6fb78141-635a-4dd5-bf7b-b4856557f8bf\",\"trace_id\":\"61e6a484-761e-43fe-9e1d-615db8815972\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:06:00, 2026-05-11 13:08:00] {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"66cb47b5-7670-499f-8e5e-2794a79ea0ee\",\"trace_id\":\"98fcf44b-1981-4c72-bc30-54a7213fdf5f\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:08:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"213a9afb-41d9-4aa2-9cd1-26403941798d\",\"trace_id\":\"1de2dc92-3924-40e6-bf87-72c61149ff79\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6306fff3-d516-4208-b6ca-e6528d6e929e\",\"trace_id\":\"435415d9-55b1-461b-8cbe-e0fb850934e2\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7f1d33f4-4005-45a0-bbb7-c356ffda3303\",\"trace_id\":\"d2153ed0-e879-422c-b425-a24f5a59d552\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring start {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:14] local.NOTICE: Monitoring end {\"correlation_id\":\"c22b7911-0148-4c01-b4e8-6da7a815c317\",\"trace_id\":\"b4fb4a8f-db8a-4d5d-b69b-5afe4185bbef\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa7c1c95-ab7a-4f46-9f03-1f07640421d6\",\"trace_id\":\"6ad92b2d-77f0-4c74-836b-edcd9fe83015\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e17f8fc6-a250-4192-9045-7d55d9f53a5c\",\"trace_id\":\"f08e79d3-f572-4f99-805c-b28aca5175f9\"}\n[2026-05-11 13:09:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:26] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de11fdd5-04e0-4ba2-a4d7-c21166acaf10\",\"trace_id\":\"07e6acc2-2b1e-4f30-875c-a56b65a07e7b\"}\n[2026-05-11 13:09:35] 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\":\"c49d1b97-94dc-4296-bb80-cff19cc83be9\",\"trace_id\":\"12a90633-ccb0-4d32-9f9f-87a92ab6654f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"6e07845b-9569-4dee-a6ea-b177e1818df1\",\"trace_id\":\"fb4a038c-18e1-4aec-8bee-86502718f92a\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"2a898539-7e6b-4a55-90d2-4ef758677f22\",\"trace_id\":\"4fcc8111-f51a-47c6-9f5d-28345b047419\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"d14dbc9b-0860-4912-8741-ff4491e05c02\",\"trace_id\":\"12f0aed5-1428-4b80-874e-fef8fac22b9d\"}\n[2026-05-11 13:09:55] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"5b9a906b-419c-4f06-b18e-70fa25dce443\",\"trace_id\":\"ea539d85-085e-426e-b77e-847fbfce2e3f\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:55] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"1890ab0b-eae9-4ce2-9f0d-9e1e766866a3\",\"trace_id\":\"f22b1474-4d5b-466b-b5d2-5aae913ea1cc\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"525eceaa-975b-470f-966f-887e1aa04bee\",\"trace_id\":\"c45bd88c-805f-43d0-a6c1-f338b413c5a4\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:09:56] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"180edc8c-6bbe-4f4c-b79d-e5ff3b39aaf1\",\"trace_id\":\"4c24f8ed-ede3-49b3-abdd-7358e82599e0\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"746f0413-3a90-4c88-a9c5-4dcf1dac7302\",\"trace_id\":\"bba8251a-7c71-49f0-8f02-cb9d62e4065d\"}\n[2026-05-11 13:10:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"79989068-4f28-4ca3-905a-eda362f07dc2\",\"trace_id\":\"1b5bddff-764c-4086-89e6-c6d88f709135\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring start {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:12] local.NOTICE: Monitoring end {\"correlation_id\":\"ee0cb2df-507f-4650-a743-aa3b5d2d2183\",\"trace_id\":\"4a91a980-12a3-44de-8f0f-b941f9a8c901\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1397f521-018b-4d51-9798-c36a1486bb5e\",\"trace_id\":\"c3bcd82a-554c-4771-8d57-2b53175cf6c9\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2255f33-7a59-44f7-ba3f-bac55b9e0afd\",\"trace_id\":\"a764a2b1-5df8-4612-8f80-ac292506312a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:08:00, 2026-05-11 13:10:00] {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de5a0a37-d960-4856-acc4-b51c8b0ff967\",\"trace_id\":\"9074ac1d-54c5-4758-8c50-0ccc2494742a\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4830c59-22ce-46be-84fe-750463e86f9f\",\"trace_id\":\"4091a89d-1e23-4182-be1a-45d713408829\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5ba553f5-d2a5-4e96-9372-329a7ebd9cc3\",\"trace_id\":\"4aa9d8e8-42d2-4618-b71a-27d580016458\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3d03632-5b6f-4148-913d-c08ae0e5c567\",\"trace_id\":\"92a33a8a-140d-4e1f-947a-cb010777a3ed\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:00:00, 2026-05-11 13:05:00] {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de029169-3cdd-4431-898a-0ba676bd36b7\",\"trace_id\":\"510ebb1e-eb1b-4c6d-b207-ab398a13bc53\"}\n[2026-05-11 13:10:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:05\",\"to\":\"13:10\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:00\",\"to\":\"03:05\"} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91f7da76-6d37-4e25-926f-a836583842a0\",\"trace_id\":\"d5aa789f-4bdc-4cb0-a430-377f8a53a6da\"}\n[2026-05-11 13:10:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:33] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] 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\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:34] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1d13fe7c-9c80-43a7-8f0a-b5de0024e618\",\"trace_id\":\"52ce0d88-8d9c-4ec3-87c2-f4322106fc61\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:12:38.444781Z\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f89f6358-f9e7-42f8-9fd8-b6154ad724cd\",\"trace_id\":\"6b1b3a33-2803-442b-a290-51485b95b962\"}\n[2026-05-11 13:10:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44d996d2-f7b4-440a-9e3c-f1150fcc75c0\",\"trace_id\":\"63ad216c-c315-4f1a-b3fe-a4d6006e21f5\"}\n[2026-05-11 13:10:38] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"758fd032-dc79-4618-9e80-bf4c9b8382dd\",\"trace_id\":\"12eae3dd-dfd2-4f6b-8d53-d35aae84118d\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"785082a9-49c4-4efd-93f4-54062a2b07ca\",\"trace_id\":\"300803d8-b3dc-4983-94fe-f4f4775b0238\"}\n[2026-05-11 13:10:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:10:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48b294b7-738f-4453-b4ee-0cca6eca1686\",\"trace_id\":\"0b568c76-885d-45eb-91bf-c3462103974f\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f749bf3f-a31d-4e55-be92-7951b08f1e34\",\"trace_id\":\"71a05c05-ef99-46cf-8f0a-75993657c93b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring start {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:08] local.NOTICE: Monitoring end {\"correlation_id\":\"8a36d804-3d41-4579-835e-f16790773d33\",\"trace_id\":\"203029bb-c173-4766-bfc4-cf896f302a7b\"}\n[2026-05-11 13:11:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d262b0e9-480f-45bd-a2d5-ec9393d4b816\",\"trace_id\":\"2440942e-a715-4f8f-b7ad-0e01e1d40de6\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3adbda82-f549-40c6-89a7-9a0788dee8d4\",\"trace_id\":\"230ad5c5-811e-4960-b1e4-61540f3c3e7e\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2312e15c-00f3-4ce0-83ca-aa630d679f4f\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24432960,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":348.77} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":447.25,\"usage\":24520552,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8cd14b6-e5fc-40a8-b816-130a3fd0edd5\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24498480,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.03,\"usage\":24486488,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"73f5e539-b222-4013-83f3-f3c34d212ea1\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24447240,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] 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\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:20] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.26,\"usage\":24509280,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e8de57fb-a5a2-4d3b-917e-c63dfa95d5d7\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24466784,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:21] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.96,\"usage\":24482904,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"502d2e26-d275-49f7-84fd-f83e84c85d2c\",\"trace_id\":\"8bf7aabc-5a84-42d4-a1b3-f00e68cd6103\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] 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\":179.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:11:34] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"a593779c-b5ff-4a7f-98dc-26de89733feb\",\"trace_id\":\"76cee659-848c-4d03-af82-53bedb54ddcf\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b0200f2-7e4c-4b2f-8700-43b109be19bf\",\"trace_id\":\"e7f909dc-fc4a-41cf-8a57-2d7aa18e1459\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c445fec1-d677-4732-93c8-652122b6e087\",\"trace_id\":\"4042587f-feb8-4be8-ad48-d72338ff2596\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring start {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:11] local.NOTICE: Monitoring end {\"correlation_id\":\"730362ff-66ef-49c8-8a2f-f1b699637f82\",\"trace_id\":\"3883eca1-1cc0-45d6-941b-294fc1c0b207\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b16b2280-ca5c-4d1f-8498-209d4894d473\",\"trace_id\":\"6463944b-2626-43bc-b8a3-de0ce86a2bee\"}\n[2026-05-11 13:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a71a73fe-d984-4b60-8af0-d07363b28b62\",\"trace_id\":\"19bf1918-8f0f-49be-a7ef-96ee702bad21\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:12:00] {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14c66a44-6da2-456d-86dd-bed5c82d3099\",\"trace_id\":\"59c8ad39-d735-4b59-988e-f3f4bc128a20\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"30868f42-4c79-4964-bf09-d4e5d37555bd\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:12:21] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"e1da8621-fad1-4011-bbe6-438566f7f4fa\",\"trace_id\":\"0ae0ee1a-8fe8-461d-a8e6-7de1978f490b\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61cb09e7-64ac-4bf1-a6f9-d6d341cbb778\",\"trace_id\":\"402fdea0-3572-46a8-adca-6cdafad95600\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8e84864-240a-4ceb-9cae-a7f012580c0a\",\"trace_id\":\"87c30f4e-057b-449f-94f5-65496449600b\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring start {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:12] local.NOTICE: Monitoring end {\"correlation_id\":\"8f9bba28-b7bb-438e-8e40-d4961931f732\",\"trace_id\":\"6a846fd9-9695-4e3e-9ace-53f6eeed5e64\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6c1b4197-bcda-4e48-9aef-278868c3675d\",\"trace_id\":\"6d77d2fe-d6f8-4bac-a2d4-eee2e593160e\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a3075aa-1063-4351-ac45-0e2e0042e7f5\",\"trace_id\":\"cea79727-8128-46ca-8651-e50e5f71cd73\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.NOTICE: Calendar sync start {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"956f34eb-92d3-4478-8865-d803c148d177\",\"trace_id\":\"6203cb23-cf05-4b45-b591-bc81c46c6da2\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] 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: 9f7e56cd-8425-40c8-b1c7-0d9dd0a00200 Correlation ID: 4ebacfcb-108d-4b2f-bf06-f6551fa6212e Timestamp: 2026-05-11 13:13:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:19Z\\\",\\\"trace_id\\\":\\\"9f7e56cd-8425-40c8-b1c7-0d9dd0a00200\\\",\\\"correlation_id\\\":\\\"4ebacfcb-108d-4b2f-bf06-f6551fa6212e\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] 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: 815b4d8a-b5f6-4339-9fd8-06dec95c0200 Correlation ID: d13344db-f62a-43e7-a229-19531efe8912 Timestamp: 2026-05-11 13:13:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:20Z\\\",\\\"trace_id\\\":\\\"815b4d8a-b5f6-4339-9fd8-06dec95c0200\\\",\\\"correlation_id\\\":\\\"d13344db-f62a-43e7-a229-19531efe8912\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d4424660200 Correlation ID: 077df2c9-3cd0-4610-8b2d-8de81d9019e0 Timestamp: 2026-05-11 13:13:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:22Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d4424660200\\\",\\\"correlation_id\\\":\\\"077df2c9-3cd0-4610-8b2d-8de81d9019e0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] 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: 239f0f34-b431-451f-82c9-5d443d660200 Correlation ID: 12a276d1-dabe-4bde-9c95-76b4936fccb2 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"239f0f34-b431-451f-82c9-5d443d660200\\\",\\\"correlation_id\\\":\\\"12a276d1-dabe-4bde-9c95-76b4936fccb2\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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\":\"854a1962-2cb6-470c-a7c1-dc991c9ad212\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] 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: ac3850e7-0b34-46a5-be3c-ca54332d2800 Correlation ID: 698dc6b1-2b23-44c5-85a4-7ec12daafa93 Timestamp: 2026-05-11 13:13:23Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:13:23Z\\\",\\\"trace_id\\\":\\\"ac3850e7-0b34-46a5-be3c-ca54332d2800\\\",\\\"correlation_id\\\":\\\"698dc6b1-2b23-44c5-85a4-7ec12daafa93\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:23] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e72183f-e524-40dc-8210-a771c46bd71b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] 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\":\"fcf41c71-dab7-4361-82d6-54d15d2b150b\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:13:25] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"740a1346-847d-4668-88de-921f59c2fbe1\",\"trace_id\":\"63df8077-d5a5-470f-be8d-a46e9e3f5b32\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b59c4b37-8ecc-4a6e-9b76-3b8bf4a78afa\",\"trace_id\":\"a631ed58-30e0-4a5f-9691-d4ac1d61a9a1\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f300b542-39c9-41fc-9446-5d8501a0bfe1\",\"trace_id\":\"801f3131-4a75-478d-8952-d0d1e782369e\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring start {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:19] local.NOTICE: Monitoring end {\"correlation_id\":\"d77ce2ff-b486-4f1f-b50a-946de2072534\",\"trace_id\":\"5bbb7c07-192f-402b-9131-765a017a397d\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c81801c-2b76-45c5-afe9-16b683d05de9\",\"trace_id\":\"ba7a57d6-5d87-443d-9bbe-deeef3a6031e\"}\n[2026-05-11 13:14:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"010a8c5c-e36e-415f-a821-89a182151839\",\"trace_id\":\"1750642a-1a06-421e-8c08-d6b938e95824\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:12:00, 2026-05-11 13:14:00] {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b757cd1a-38da-4af0-8cba-194c10d18b52\",\"trace_id\":\"e398da7c-14a7-469c-8972-576c6ef24f2c\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"203fe05b-f375-45af-b84b-ec4dae4ec555\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24444448,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.01,\"usage\":24487568,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4bddb487-092b-4ba1-8f45-c51f109f8000\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24443360,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":25.95,\"usage\":24488184,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"5595142d-507f-4326-8711-3588396526e4\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24443352,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778503497,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1461.89,\"usage\":24462056,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"c17b362d-233b-4b51-8f98-588d0b1887f2\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24443544,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":14.3,\"usage\":24488328,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"fb85a8a1-8b50-4627-a9c6-5d80fa9c109e\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24443672,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:48] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1212.8,\"usage\":24464992,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"510611ae-8e03-4654-85f5-9ccc64606eca\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24443632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] 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\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.49,\"usage\":24486088,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"cfa033d2-3ad7-4941-b77f-04320a3a6802\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24443104,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] 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\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":14.48,\"usage\":24485144,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"898bd4a3-ba9b-4178-b680-862f8d3f50a6\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24443288,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:54] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 12:45:07\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:55] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:56] 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\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 12:45:07\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:14:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2863.72,\"usage\":24458440,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d71e7d98-8877-4463-9f99-f242ab3727ce\",\"trace_id\":\"d3629dcd-3b2e-4826-9ab5-2a76ac5da7c7\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"48dbca15-62b0-4e0d-a117-e4567539e2d3\",\"trace_id\":\"1c86eb0b-bcc1-4cac-b669-7d60551a4ae2\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3ff07f45-c858-46f9-bc7f-f2cf5ba084fb\",\"trace_id\":\"5e497d06-6ade-402d-a404-82f80c0c1305\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring start {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:22] local.NOTICE: Monitoring end {\"correlation_id\":\"21170426-b8e9-4b60-b912-7f72092bfda7\",\"trace_id\":\"5dc576b6-acae-40ac-a901-838b6499157b\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e6628769-cbc7-4ccb-8ef1-e01b77a1ef61\",\"trace_id\":\"bd18a389-66b2-4eaa-93c7-c290397114c1\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ff0ebb51-9368-41fc-a4de-21a0e2ef81b2\",\"trace_id\":\"28449b83-7825-4883-bec4-aae9308a4c94\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49433268-b4ef-459f-83b5-4a29e6e338fe\",\"trace_id\":\"8bf5e0d0-9cf0-4fd5-b8a7-34fedff90e03\"}\n[2026-05-11 13:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cd74426a-4283-47dc-98da-9114eb7ead44\",\"trace_id\":\"aa1404a4-b1ac-4d12-912e-62398b860785\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5bb8e5d-9714-4a09-96a8-25653f29d118\",\"trace_id\":\"cb7e97ec-2dce-4596-be76-b94a52c9ad82\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:05:00, 2026-05-11 13:10:00] {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:15:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95fd1a7b-4232-4c00-9870-f201cc3dbf25\",\"trace_id\":\"d9a99ae0-0167-4015-850b-bcc24e3c9849\"}\n[2026-05-11 13:16:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:11\",\"to\":\"13:16\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:06\",\"to\":\"03:11\"} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2c4d9f6e-61d7-49e5-bf35-66be5c98e68b\",\"trace_id\":\"e9fd29f3-ab42-46e4-8370-75e06c6d08b7\"}\n[2026-05-11 13:16:21] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] 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\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:23] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5e100403-4e46-49b6-9fca-571fbb73e84d\",\"trace_id\":\"d09f3417-f16f-4f5d-8f52-3ab418a47912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:18:36.332753Z\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"31a33aad-bc23-4970-930a-3fc3482a7d9f\",\"trace_id\":\"c9d034bb-f649-48d7-982d-2fb9f39288cb\"}\n[2026-05-11 13:16:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:42] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812751,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812752,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812753,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812754,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812755,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Dispatching activity sync job {\"import_id\":812756,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0d839f22-c2f1-4ae9-a5c3-5317ca810e60\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.ALERT: [SyncActivity] Failed {\"import_id\":812751,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"fda61d57-851d-4541-9fdd-2de931464670\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:16:47] local.ALERT: [SyncActivity] Failed {\"import_id\":812752,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"fbb05d43-d5dc-4d7e-8fbd-06676359d967\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812753,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"510b93a5-396a-4fa9-989c-f42d40e01752\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.ALERT: [SyncActivity] Failed {\"import_id\":812754,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"9d9cb622-070d-442c-9fe0-61ffd96a2901\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.ALERT: [SyncActivity] Failed {\"import_id\":812755,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"576606ac-e4ba-4e31-9ad4-6a5ee33d24a3\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Start {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 12:59:00\",\"to\":\"2026-05-11 13:15:00\"} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] End {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:49] local.INFO: [SyncActivity] Memory usage {\"import_id\":812756,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":28233496,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"42362473-27c0-46c3-95a0-9992e5b6ad5b\",\"trace_id\":\"e8751308-34bd-4bc5-a938-976de9f9a0eb\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"74ffa175-4ba8-48fc-9127-efafa2673f25\",\"trace_id\":\"421d9b5a-c65e-4da0-8aac-1a3c3c67dc2d\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50234b92-b3d3-462c-8083-df75e9d36ef9\",\"trace_id\":\"168c13a7-0523-491a-ac62-a1a58325f940\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:16:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"02d4733e-71d6-4c79-b2f3-676d21027cfb\",\"trace_id\":\"a9b01224-a814-4ad6-853f-d67558d192ba\"}\n[2026-05-11 13:17:02] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] 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\":252.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:17:33] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"50902374-9601-4bcf-b35b-3c944a000992\",\"trace_id\":\"3a342895-a9df-4806-9c81-37eff0073912\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"754677f4-d0ba-49f8-ba36-4a95c4f79b86\",\"trace_id\":\"e6b1c5ed-b003-4f84-989e-0be463792550\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6526f09f-5927-4e62-9b49-6a5303d138fb\",\"trace_id\":\"3469a382-fd54-4419-9453-2a83041aeffe\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring start {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:27] local.NOTICE: Monitoring end {\"correlation_id\":\"f1a8aaa5-9029-4d9e-b859-054980e96e66\",\"trace_id\":\"c27fa55d-9d08-42a0-b174-c8b8c528cece\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04a5026c-0d10-430b-9f48-a7359129a8e9\",\"trace_id\":\"b1e72a2c-61e6-40ea-ac02-23375b795de7\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd009748-ce0f-41d9-8dd5-e54e0c983af8\",\"trace_id\":\"3f00df16-9966-4f8d-b44b-6247d69d5ac5\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:16:00, 2026-05-11 13:18:00] {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f405ca95-ec44-418d-bfdf-d6478aee2377\",\"trace_id\":\"e27aaea4-c0b3-4233-aea0-9af0ab40722d\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:18:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7e36c548-597d-43e1-8f7d-55d01d801771\",\"trace_id\":\"8caafe49-813f-4746-8ed8-358a92d780ba\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8b091f2-5423-4f4e-a43a-a52721397e0c\",\"trace_id\":\"f17bab20-d572-48aa-b926-bd98b324eeda\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bffeef8-bddb-4ae4-b737-a8806467af0f\",\"trace_id\":\"a2d57f82-59f8-45ae-9de2-6b3fce314a00\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring start {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:24] local.NOTICE: Monitoring end {\"correlation_id\":\"83b5ad98-cf7e-450b-98d4-3ae0df249caf\",\"trace_id\":\"da3f55be-f898-4d8c-8505-3e47d9a39227\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0041d0cd-ff20-45a0-b340-f4ffd8b5097b\",\"trace_id\":\"ffbad918-ce8d-4cbe-946f-deffec0066f2\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:19:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db53c8d7-d06a-433e-ad57-53f62594aa5d\",\"trace_id\":\"c52d4922-a2ea-4bba-84e2-efbe3d5b3d39\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"58d63e25-81aa-4019-ad1f-f48633850ed1\",\"trace_id\":\"1d416ef6-c9bd-49bc-8d52-8e7232d6496d\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88c9520e-a5a5-4ad3-bd55-5d40920bbebc\",\"trace_id\":\"7ef22b5b-3a6b-4e11-a3f5-64ebc4aca1f9\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring start {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:18] local.NOTICE: Monitoring end {\"correlation_id\":\"b6275478-91e4-484d-bc6c-14ad4789c0d0\",\"trace_id\":\"62126976-9849-4814-b5b2-23ad182504c0\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a7c3a536-8f48-4e49-8c84-cd9190b19f05\",\"trace_id\":\"52bb3ddc-8a82-429f-abde-1ebfc4cf39da\"}\n[2026-05-11 13:20:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:29] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8260e90a-fd5f-4527-aa8d-f5ef928d02d0\",\"trace_id\":\"d786266f-5b6a-4a7b-821b-a4098f2c7dfe\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:18:00, 2026-05-11 13:20:00] {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7c70529e-e639-4d1b-90d5-267d786a8edf\",\"trace_id\":\"8155b0b6-bc2f-4cb8-a231-dda62eefc210\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ec2544a-4285-493a-97a9-f14cfb347416\",\"trace_id\":\"b59cdae6-2c75-4e3f-aeb4-0f8c9bc0b2cf\"}\n[2026-05-11 13:20:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6394bca2-3ed8-419c-94e9-f576a0880a0f\",\"trace_id\":\"563b913a-f41c-4f08-9cd0-6eff12cbb8fd\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"503de02e-499b-4d34-8f62-1935f20e1081\",\"trace_id\":\"407d50a1-957f-46eb-9a3b-8733e22917d8\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:10:00, 2026-05-11 13:15:00] {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d2fd7148-a030-49d1-876d-1596d2159cc3\",\"trace_id\":\"6c551d86-e709-4d01-991e-1524abcdf98c\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:16\",\"to\":\"13:21\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:11\",\"to\":\"03:16\"} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5219f136-8918-45df-bdd5-1d8a042d8851\",\"trace_id\":\"0025dde7-fd79-419c-b00a-7be36097e077\"}\n[2026-05-11 13:21:05] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:06] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] 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\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:07] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e6293342-bc94-4e49-ad1d-e5484c9588af\",\"trace_id\":\"dd25c483-204f-461e-930b-585f328e4aaa\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:13] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:23:13.945192Z\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1d042321-c550-4a6c-8ff3-ffd8509066ee\",\"trace_id\":\"de7da6f7-f3f2-4054-ab95-be8ccacba83a\"}\n[2026-05-11 13:21:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a2fa1890-e79e-4ace-b5af-9f5445f4c1ca\",\"trace_id\":\"bd118185-93f6-4cb7-9b61-f4f2472ea705\"}\n[2026-05-11 13:21:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b1bd5b47-2e81-4598-987e-838a8fb205ae\",\"trace_id\":\"4667e49a-acf3-4b10-99eb-030c4acb6eaa\"}\n[2026-05-11 13:21:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"effce9e7-4a59-4f5b-b2d9-d6bb9955bdaf\",\"trace_id\":\"0753f981-e220-4e56-ba17-081a0264ca5e\"}\n[2026-05-11 13:21:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"61b93a81-2b51-41ba-80ad-44d848e6d98a\",\"trace_id\":\"776cd9ba-5bed-4a68-a32d-61707ff04b29\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] 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\":194.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"42cec568-a42d-4b8a-8366-ba977786d07b\",\"trace_id\":\"99567cd0-0a7d-4bc3-b5ab-b0ef9860f9ff\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0248d4eb-6482-4fd7-b0d0-76f539d64a02\",\"trace_id\":\"7470cef6-2ac1-476c-ac16-b577b368d0ad\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring start {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:14] local.NOTICE: Monitoring end {\"correlation_id\":\"26f9ae76-53bf-4188-bf18-e73bfe05ea0d\",\"trace_id\":\"5b7263ff-282b-40ce-959a-420008339e85\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0c5ae09-eee9-4726-aab1-bd354d31b8ba\",\"trace_id\":\"66d2a252-48c5-47c7-bffb-aa4a1f3dfac8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49530694-0134-439a-9101-c258b03b403e\",\"trace_id\":\"dd2707ae-7389-4841-aba1-2fc74ebfa4a8\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:22:00] {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9432f5e-51cb-4ad7-8249-7da341af6c9e\",\"trace_id\":\"8990e3a1-0766-412c-9eda-c2955a14303e\"}\n[2026-05-11 13:22:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:30] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5626d431-0639-4b42-a1cc-c10ce0bda4cc\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"4dc803ee-ed8b-4cd3-8566-39406b274dc0\",\"trace_id\":\"3810d9c8-984a-49b2-be3f-b9d4484e1371\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"427e0011-4798-4b55-ab2b-31d72e81e697\",\"trace_id\":\"a6b95025-111d-43a3-8840-8256edd0e639\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ffea21e3-df5c-4966-91d5-ff67112018f3\",\"trace_id\":\"9ab63425-e77e-4728-b0e5-46ce3f800208\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Done {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:22:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d19be2fd-b5a0-44ed-9122-0c4f9b29de77\",\"trace_id\":\"38f4beb0-6070-4d47-a74e-05c1c79bcc4b\"}\n[2026-05-11 13:23:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d6d818c2-3f68-4af7-ae84-344ef64ac392\",\"trace_id\":\"471152e8-0dc8-493b-9f34-5be08734e40e\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf34490f-ad5f-41bd-b0d5-5a405035de52\",\"trace_id\":\"d65d65b4-b808-4519-a50d-ce22d9ca33b7\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring start {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:14] local.NOTICE: Monitoring end {\"correlation_id\":\"6e73e380-a9dd-4ec2-9549-2c9d27ea33d9\",\"trace_id\":\"042244bc-6292-4ee1-bec2-bec051b6da7a\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"99a0a07b-115b-46e5-84a7-64cf5fdc5cdd\",\"trace_id\":\"0a7a64f9-6c85-4c2e-8abf-6dce4d6904a0\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67fa75b4-0da3-46c4-b399-aea1fd68acfe\",\"trace_id\":\"fb4d00f1-ec26-483e-9e43-28592fed4209\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a8d8e78-a2b0-4a97-9e30-6acd680eb67e\",\"trace_id\":\"c405cd76-ea51-4773-9153-c3c2796ef8ca\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Request {\"request\":\"GET connections\",\"full_target\":\"connections\"} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:23:33] local.INFO: [integration-app] Connection state identified {\"teamId\":3143,\"connection_name\":\"Connection to 66fe6c913202f3a165e3c14d for Dev Zoho CRM client\",\"remote_connection_id\":\"69e0b983da98fa74f98aebfb\",\"is_disconnected\":false,\"is_deactivated\":false,\"is_valid\":true} {\"correlation_id\":\"9dec08d2-96e0-45eb-a032-a94459cf4882\",\"trace_id\":\"0216f925-8c2a-4d5c-b6f5-08bd0d05d42e\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b30edf2a-0f8e-48f2-ae68-ea509f9fbb3f\",\"trace_id\":\"b23d97de-d8f1-4d63-b9f1-5a5fa066b63d\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"352ce231-2479-477c-b7d6-3479bdb5b4fb\",\"trace_id\":\"1c68782c-3484-42a7-9fef-7cf9fd958820\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring start {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:15] local.NOTICE: Monitoring end {\"correlation_id\":\"43f89b47-ff4e-4135-9e83-1ba49362b294\",\"trace_id\":\"e2d97dce-1b0b-47d0-b8d9-ab9bad3122e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace8e7c0-1267-44a7-b3f4-3b5308b3c327\",\"trace_id\":\"972e9d7a-81df-4abb-b333-e503b69912e7\"}\n[2026-05-11 13:24:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"04945c54-3587-487c-806d-82ffa279723f\",\"trace_id\":\"4d0688d0-f0b8-4a34-925e-5f8f0ff0d468\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:22:00, 2026-05-11 13:24:00] {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7cb72210-c311-463b-b380-626ccc697b79\",\"trace_id\":\"28fb45e9-edb7-42cf-b093-8c51d7ea24db\"}\n[2026-05-11 13:24:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:33] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abba03b1-042b-419b-ba52-ca18a7672b74\",\"trace_id\":\"2f0b1a40-755b-4a48-8646-c646240c30f0\"}\n[2026-05-11 13:24:44] 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\":\"d0caf393-abaa-45d2-9cc7-ecd6ee2f9993\",\"trace_id\":\"3b302f05-743d-41f9-a679-401f82bd6ab1\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abb6347a-ce44-48d2-9df6-21a15d25914c\",\"trace_id\":\"7f21a29c-f866-4b12-9f2f-582a2ec5d206\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6dda0822-5056-424a-887d-7ceeab919397\",\"trace_id\":\"035a7681-cc61-438b-b68d-c2acbfaa26e7\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring start {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:21] local.NOTICE: Monitoring end {\"correlation_id\":\"ea6b2eb5-8b56-492c-a5bf-c2dc6988f721\",\"trace_id\":\"bec32a7a-7728-484a-b7ff-24d5e1b1b304\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"916284fa-c470-44aa-a24b-2ecb85951294\",\"trace_id\":\"30135e60-784c-4ba7-bcb7-bd9c04809f57\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c2bdac5c-d5e2-4af6-909e-190a4306fc19\",\"trace_id\":\"c96d3c76-b1c9-4553-9351-07e57c89295f\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8a39bdeb-ef77-4527-8789-49ee55740351\",\"trace_id\":\"7ab63ab8-c393-47cf-8186-620a2750d432\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1b9a8c56-c3d2-43e5-ac4e-60d33969d9f5\",\"trace_id\":\"e21d1390-b169-4507-a471-d5ff139e1914\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"855c0732-1204-45f0-bb2e-097c85794d60\",\"trace_id\":\"f2e4aa1e-c1e9-4a8c-9c9f-32357f3f1208\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:15:00, 2026-05-11 13:20:00] {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"06063cd5-3639-4c2d-b1e9-378b611f30a4\",\"trace_id\":\"7b28e9b3-cecf-40c5-975f-5156e5e07c8b\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:20\",\"to\":\"13:25\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:15\",\"to\":\"03:20\"} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:25:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9a34b31c-c36b-4add-a9e4-7c9eaf031221\",\"trace_id\":\"ebaa20ba-5a7c-4f46-971b-446259a4435e\"}\n[2026-05-11 13:26:04] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] 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\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:05] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2caeaff0-eb87-4daf-bf1a-2cda03ccb58f\",\"trace_id\":\"410b7aac-34be-4560-9003-a4051e1ada29\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:20] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:28:20.923357Z\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d8fefee-beac-4335-8dbe-c0d749088aa9\",\"trace_id\":\"690686eb-1595-4eb5-8f5c-b18a353295c0\"}\n[2026-05-11 13:26:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b5d2b2b2-4bed-4cbc-a399-38db40c85c03\",\"trace_id\":\"c89c8aa4-0666-4b70-9e8b-7a30732dd8f6\"}\n[2026-05-11 13:26:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:26:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5733b4bf-69c4-4d39-b27b-93f30424a63b\",\"trace_id\":\"fd3de5b8-677e-4c69-8996-e2d9e7514b9b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"45af0a6b-7880-4b73-8b52-d0ff2d414ae4\",\"trace_id\":\"f0b2ea2a-8c29-4b3a-b3f9-a46e6214c33b\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b3d7ed17-0e63-40c4-8b6f-0f1d75de919a\",\"trace_id\":\"211a3974-2f9a-4287-bc82-73898bb8525c\"}\n[2026-05-11 13:27:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:17] 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\":217.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:18] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1bd4d097-ca3f-4c1e-bb9b-4752e9b081bc\",\"trace_id\":\"3c6b3fc6-77fb-48cb-9995-6541c718ad70\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85cad302-3868-405b-9ca9-bf619a14217b\",\"trace_id\":\"addaecf0-c009-41f8-ba2f-768c0e47dd4c\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a64e0742-33b3-4ae8-b92d-20abde14bb9b\",\"trace_id\":\"a495b6ae-e9b4-445b-977c-a79c14d67764\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"55e0aa54-dd63-45ed-b9a8-029359c0170e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:27:42] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"f891f684-db17-471f-bcff-5c6933535e0e\",\"trace_id\":\"63ac75c9-677f-4aa2-a132-a031bb2ed959\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b9de5228-c2ea-439e-873b-447389e92695\",\"trace_id\":\"462745d4-690c-429d-9e6b-a4a81e907115\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1302515c-0684-4ee7-892a-65d16469a17f\",\"trace_id\":\"048271ca-1522-4310-97f3-133f938a8621\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring start {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:28] local.NOTICE: Monitoring end {\"correlation_id\":\"9026ff84-0338-4844-9c87-f5681e9c989e\",\"trace_id\":\"01dfd544-10fe-48eb-aeb8-00af47e2db8b\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4511fbed-afdb-41e3-a6c5-5c4450b94b33\",\"trace_id\":\"13cc9bb6-2fb0-4f25-a14f-d77512fbac83\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e40047f-d7d1-404a-ae28-56a452662ff4\",\"trace_id\":\"a8dbc659-e25a-41a5-bc09-3e6dee281be6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:28:00] {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53f4a08f-68b5-44d0-ad56-25e06dde07e1\",\"trace_id\":\"125c8e35-39fa-4ba0-af8b-fc26882d6cd6\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.NOTICE: Calendar sync start {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e10d3d08-2143-4827-ae62-1154fc20ed12\",\"trace_id\":\"7bb37f19-a31b-4cd2-829f-fd1d87b9fd23\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] 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: a815f935-0560-4cbf-bd39-696ec5b10200 Correlation ID: d422d1f3-9d26-42e2-9db8-4e388e2dcb49 Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"a815f935-0560-4cbf-bd39-696ec5b10200\\\",\\\"correlation_id\\\":\\\"d422d1f3-9d26-42e2-9db8-4e388e2dcb49\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] 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: 5d47a07b-8552-46bb-b30c-088bb40b2700 Correlation ID: 71747b30-c0d1-44fa-926e-c532d9bd607d Timestamp: 2026-05-11 13:28:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:57Z\\\",\\\"trace_id\\\":\\\"5d47a07b-8552-46bb-b30c-088bb40b2700\\\",\\\"correlation_id\\\":\\\"71747b30-c0d1-44fa-926e-c532d9bd607d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: fd62fc18-8175-4bb2-8aba-993de2bc1f00 Correlation ID: f27a0a94-af03-46b4-924f-8342fd79c1fa Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"fd62fc18-8175-4bb2-8aba-993de2bc1f00\\\",\\\"correlation_id\\\":\\\"f27a0a94-af03-46b4-924f-8342fd79c1fa\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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\":\"b5ba5b1a-003e-4efc-bb9e-558c91745143\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] 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: c1d3030c-3dcb-4ba5-b89c-445a62582200 Correlation ID: f017abd4-c07f-4dd1-8838-19aec19c9a82 Timestamp: 2026-05-11 13:28:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:28:59Z\\\",\\\"trace_id\\\":\\\"c1d3030c-3dcb-4ba5-b89c-445a62582200\\\",\\\"correlation_id\\\":\\\"f017abd4-c07f-4dd1-8838-19aec19c9a82\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:28:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] 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: c6b561c5-d5a6-4082-b342-d98934a60400 Correlation ID: a623521f-46d1-4cf9-832f-b0ba5b5e5728 Timestamp: 2026-05-11 13:29:00Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:29:00Z\\\",\\\"trace_id\\\":\\\"c6b561c5-d5a6-4082-b342-d98934a60400\\\",\\\"correlation_id\\\":\\\"a623521f-46d1-4cf9-832f-b0ba5b5e5728\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"04f7d5e56b500e194de6eb527d7eca97b4f8f64618ae9e3e10c66c40b2be889e\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] 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\":\"9d2b7b82-b638-48f5-ad8c-01bfc16188ab\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"006306d3-15e9-4239-bbe5-3ee45b59f0e8\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:04] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:29:05] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f161d3fd-1672-4e54-a465-2c2ca70d40dd\",\"trace_id\":\"e5664776-4ba8-4a34-a469-06c3cf8af8ac\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7751359c-0e08-46a5-ace8-c4d6d1b3d22b\",\"trace_id\":\"97e0fb2d-f585-4267-ac70-e105d3f1771f\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ce765d5-1644-40d1-967d-63f20aeda471\",\"trace_id\":\"645cf84a-a3d5-472d-a7b9-d93abb4d2722\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring start {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:10] local.NOTICE: Monitoring end {\"correlation_id\":\"f17d9526-1fb1-4ea2-a6c6-e629fb15d1c6\",\"trace_id\":\"4800f46f-152f-4669-85b3-c1ae202a0ef6\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"191374ad-0676-45a1-8fec-ab3ef5da6ffc\",\"trace_id\":\"8399f479-4117-4d29-9d29-6c2ba1576732\"}\n[2026-05-11 13:30:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f1e6b5b-cf12-42ab-b22f-42de9343ef0a\",\"trace_id\":\"d1d7d7c2-3be9-4d91-88de-6564178861d1\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:28:00, 2026-05-11 13:30:00] {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7d2e9bde-7f5e-49fe-84cf-791c0d6be234\",\"trace_id\":\"42982a9d-354e-4d29-baa8-21562e98c7f9\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bc19e776-796c-4f87-abc5-7fe96ce2f139\",\"trace_id\":\"56eac8a4-c709-45b4-a8ac-74ab7297e0a7\"}\n[2026-05-11 13:30:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7833b486-3d7e-4b4a-a5d4-5a861366f0e4\",\"trace_id\":\"79068fbf-04d7-4597-b899-df3bb77656e8\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df9d6f11-b6ae-4363-97a3-43a3cec0a863\",\"trace_id\":\"cd5e94a4-9876-4c3b-902a-472bd96dc8b0\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:20:00, 2026-05-11 13:25:00] {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7e2b007-ed5e-4946-93a7-2a8f36025cc0\",\"trace_id\":\"65949c58-3188-4a5c-ad55-994dce99506f\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:25\",\"to\":\"13:30\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:20\",\"to\":\"03:25\"} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f057ac2-8507-4c68-bcb3-e07cf4dd80a3\",\"trace_id\":\"536b5993-a041-44c7-a0f4-ef171533d2f9\"}\n[2026-05-11 13:30:54] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] 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\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:30:56] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"5144e415-1876-4237-9c1c-4fa90fad03f4\",\"trace_id\":\"298b1dc5-36ac-4196-bbb3-db9f4364c6ff\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:33:00.986476Z\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf559e-63d0-4786-a480-1514de08d4e0\",\"trace_id\":\"8de77d28-c8d3-47a3-9a1f-b6b590173fff\"}\n[2026-05-11 13:31:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7d66a6a-6b44-49bf-b4da-f00ee9d6d850\",\"trace_id\":\"019020bd-1af8-4f29-b769-c39500e3c61d\"}\n[2026-05-11 13:31:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:06] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e9dfdda7-6ad5-4df9-9c14-1ff227cb2fa8\",\"trace_id\":\"d12bd2b7-29e8-464c-bacd-0b8d6310f47a\"}\n[2026-05-11 13:31:11] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812757,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812758,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812759,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812760,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812761,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Dispatching activity sync job {\"import_id\":812762,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea962db8-2079-4351-b146-92098996f09d\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.ALERT: [SyncActivity] Failed {\"import_id\":812757,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"82a4b97e-5cdb-41cc-8ad2-69478eff018b\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812758,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d1f05190-b8c6-4598-b216-28c1be5762b9\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.ALERT: [SyncActivity] Failed {\"import_id\":812759,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"00481afa-6f55-4ca6-a0fa-332daec528bd\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:19] local.ALERT: [SyncActivity] Failed {\"import_id\":812760,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"c827327d-18fd-4a30-aa6f-4a3287c2d2a6\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.ALERT: [SyncActivity] Failed {\"import_id\":812761,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"bd27c77c-9640-4548-a762-5976cca1ea39\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [SyncActivity] Start {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:22] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:14:00\",\"to\":\"2026-05-11 13:30:00\"} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] End {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: [SyncActivity] Memory usage {\"import_id\":812762,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25101480,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"1c07f13c-0325-4e13-b9f9-0b34807b9553\",\"trace_id\":\"b771730a-bcf9-4d65-843f-d74e14a53e31\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d3fa85a4-6422-4b20-8bea-2ffdc25ddf58\",\"trace_id\":\"ba67b11c-47b9-4b57-9d94-250b7c54936a\"}\n[2026-05-11 13:31:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa81afa6-7476-4416-8a14-4e0afb7fd7b0\",\"trace_id\":\"0895c688-6cf8-4ef1-b835-d08a6f335bbb\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":3358,\"uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Lord_Howe\"}}} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3744434e-5a43-482c-8a58-d96db763e610\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:32] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:33] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":3358,\"user_uuid\":\"e0d40335-e1a8-45ad-ab38-91c327893c2f\",\"email\":\"turner.allan@example.net\"} {\"correlation_id\":\"2bb33d69-68f1-4430-a33a-9d3c5d312d1e\",\"trace_id\":\"027a5c19-85a7-4560-986a-91a83ab2b70b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70fe1ade-f7b4-439c-bacd-589e4f702945\",\"trace_id\":\"5d361969-5053-4c93-b4ff-fad59da73b9b\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] 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\":200.7,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:31:57] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"edb14293-dee2-4572-b541-5145269d7119\",\"trace_id\":\"29ff0a3a-286d-412d-b1e4-ba1089e13cde\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f2d09e0f-7f5d-4345-baae-7e98a7da4df1\",\"trace_id\":\"39f1b49c-5962-4aa3-82c8-2335c056b38e\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"42c917c4-ee4c-400a-a391-7baeed27fd96\",\"trace_id\":\"9cfe41d6-8721-412d-80a1-0e927d98a064\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring start {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:16] local.NOTICE: Monitoring end {\"correlation_id\":\"00a1572b-11e2-4ab1-a82d-92f7dfd05570\",\"trace_id\":\"7afe5c80-c39d-4371-b278-d282817617a9\"}\n[2026-05-11 13:32:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5212a3cb-6d07-4e33-93f2-d8f2dc9e04c6\",\"trace_id\":\"efabfaba-c0ea-48d3-826c-db88f9c1198a\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d1c202b-5af5-4b36-8397-5db900987cc7\",\"trace_id\":\"25668cca-4d32-4836-9b94-de39f4a7c015\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:30:00, 2026-05-11 13:32:00] {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"90a19e03-9acc-44e2-a7dd-718681397746\",\"trace_id\":\"9a437070-e2a3-4b27-9c4f-19c38718a0fc\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d6e346c-1192-4cae-bb92-2c665b136a1b\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:32:32] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"7e7eac34-7753-4330-9f82-d74b4277fe55\",\"trace_id\":\"a658a076-7980-4e54-8bc8-8d7729360bee\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d472f-855f-4419-a18e-172dabdb2612\",\"trace_id\":\"208865c4-94ca-4abd-a834-c7990a9217f5\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"56263bc7-24e5-4608-b82a-2c8727286743\",\"trace_id\":\"1222ccc5-3941-4975-ba55-e6bc19bc8dd2\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring start {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:11] local.NOTICE: Monitoring end {\"correlation_id\":\"6104bd01-e92e-48da-bfb0-203f44ae745a\",\"trace_id\":\"83710859-ecab-4b12-8387-8ef764d6bc9e\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03a45d79-3b8c-477f-98f2-e02ecb88162d\",\"trace_id\":\"0abefbe9-7733-439e-a0ad-7a8ed6a2a0a8\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eb4c7f31-945b-46cc-a4b1-28f7fc4ae717\",\"trace_id\":\"5882c33d-12ca-4f64-9d9c-330d01654f13\"}\n[2026-05-11 13:33:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:33:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9e8342a7-c4a9-4b5a-86b0-7ef9de80c6e7\",\"trace_id\":\"c3e157ec-8e29-4e68-a524-9384dbd0575b\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed1bbd73-92ff-448a-8577-d54f71a78f6b\",\"trace_id\":\"4c8c8524-0ffb-4bd2-8b88-4beb0e2c46b8\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc11b345-c51d-405b-8d8f-d37b938519b8\",\"trace_id\":\"cc83c7f1-85da-4b58-a58f-1bf502d7a02d\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring start {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:16] local.NOTICE: Monitoring end {\"correlation_id\":\"f7f5d5cb-dfdf-4a8a-b2d7-8d4c36f97bad\",\"trace_id\":\"3325933f-c03c-409e-b500-00acabd76f5a\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f3f53cc1-72a8-410f-a290-31eb7c9c3ce4\",\"trace_id\":\"bdb9f4ec-581a-4c91-8f00-a397e4f3b673\"}\n[2026-05-11 13:34:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6ff4ba-3fd4-4000-947f-c6a3c2940587\",\"trace_id\":\"19b9ee7d-9db4-4446-a904-0dd3653bf425\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:32:00, 2026-05-11 13:34:00] {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:34:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aedf8be4-3ce6-4e41-8950-e5a29d5bd9f3\",\"trace_id\":\"015a41ac-66ff-41a6-b341-928baf086067\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2a6b281c-a447-42c1-b50e-879419a34eda\",\"trace_id\":\"df3bab23-f2a2-44bd-9dd4-3e96b102f0ec\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9432d9e2-44f9-43bc-9b9f-8205c06fec83\",\"trace_id\":\"1ad60087-b133-4274-9dce-8d3dc71352df\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring start {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:16] local.NOTICE: Monitoring end {\"correlation_id\":\"bee06aa1-28d0-4a65-99ca-da01d540da65\",\"trace_id\":\"6ef63356-987f-454e-a45c-d011512b72d2\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f5c1a9d3-cc42-431f-85cc-75aed14653d8\",\"trace_id\":\"cfe4e445-fd53-43aa-92e1-d0d858f39cd5\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e48ba111-b7ed-4157-b19b-fe46113da907\",\"trace_id\":\"991226d1-1a30-4b88-ad5c-962d49872776\"}\n[2026-05-11 13:35:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"011a038b-c319-45ba-9fb4-073eb93c8eb6\",\"trace_id\":\"4fd888bd-4e2b-401c-ab98-b69f1c350d6c\"}\n[2026-05-11 13:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea3a8f01-97b9-4a87-9e7d-03da07a94d85\",\"trace_id\":\"9723e4ad-422a-4bfc-80ff-15211349dcd8\"}\n[2026-05-11 13:36:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:19] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d09577fc-7a6b-49a2-8fef-a164fb17c08f\",\"trace_id\":\"7843e762-8bd4-4a32-b49f-541f14352c0a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:26:00, 2026-05-11 13:31:00] {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8fe8e488-80fc-497f-8ef8-46f45d0fa660\",\"trace_id\":\"ef59472f-2e7a-461b-863e-70c0d1903d8a\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:31\",\"to\":\"13:36\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:26\",\"to\":\"03:31\"} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:36:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80725a82-eb2d-4a9d-a61f-4515d6d9b259\",\"trace_id\":\"6b885485-cac9-4a65-8e81-200ec7840075\"}\n[2026-05-11 13:37:01] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:01] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:02] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] 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\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:03] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"e8edec15-a885-4b37-9115-04aa8cabd616\",\"trace_id\":\"e67bec65-4899-4233-b17b-96ec6d0b73cd\"}\n[2026-05-11 13:37:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:39:16.230807Z\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ef1d36-2e19-4d9f-9434-13790b0953a1\",\"trace_id\":\"b1c4e40e-38af-41ef-9e49-b6938e08107e\"}\n[2026-05-11 13:37:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"947e2143-5c0f-4f86-8885-45b6180b2425\",\"trace_id\":\"dfa63d70-b6b9-453d-960e-c65330ace381\"}\n[2026-05-11 13:37:16] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:17] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:27] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:37:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":58,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":495.2,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:14] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"76e8fd75-ac43-4aac-ac00-b26086994d6d\",\"trace_id\":\"9e7f4113-3c61-4f4c-ad54-c247c8896417\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"85c971dd-3b9a-466a-8c82-343543873cd1\",\"trace_id\":\"3dc44f24-e072-42b3-8f32-650367356278\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e648a4a0-bc24-4eeb-bfa2-d5cafd47e1e9\",\"trace_id\":\"447cf388-86eb-4a6d-86db-c655268f71ea\"}\n[2026-05-11 13:38:22] local.NOTICE: Monitoring start {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:23] local.NOTICE: Monitoring end {\"correlation_id\":\"877c936c-803f-4b7d-835a-25790456bacd\",\"trace_id\":\"ad8539de-1275-429a-b276-5522a71883b3\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8307e21f-dbaf-4a31-8a22-06968d45cb38\",\"trace_id\":\"bff54a45-d9c1-4b63-958e-615895fe91fb\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1910baa6-5ded-4e6e-927f-5d88e4be2350\",\"trace_id\":\"230f40cf-d743-43ce-853b-2760430c9424\"}\n[2026-05-11 13:38:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:47] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:38:00] {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e46b9a-affe-468c-a51c-0f2a45ebedbd\",\"trace_id\":\"cd7c782d-3b17-4ce3-a247-3ffc5a79d203\"}\n[2026-05-11 13:38:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:38:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0beba49a-ee11-4331-85cc-422f14d5615d\",\"trace_id\":\"b3b25bdc-d448-4125-b98d-aedc8a994bc8\"}\n[2026-05-11 13:39:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1552c9bf-add8-41b1-8777-b15082686edd\",\"trace_id\":\"ea6027c5-89d1-4c04-b4e1-a756f81a34da\"}\n[2026-05-11 13:39:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"bb217496-5475-44de-ba09-e6aaaf2b39bf\",\"trace_id\":\"2cc16ad0-da2f-4025-943e-1966163d532f\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring start {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:42] local.NOTICE: Monitoring end {\"correlation_id\":\"d81bc509-5551-4173-b956-935e0638a23f\",\"trace_id\":\"70f08e55-215b-495d-a100-1373bc19a350\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8833edd-cc08-45dc-94a1-78a04eebf911\",\"trace_id\":\"4e9813c1-d7b7-4e0a-96a9-13f68317b2ec\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fa92465c-e562-46ef-86b3-e0359c688e2d\",\"trace_id\":\"8d94044c-cc3f-4c11-b0cb-3b609c4ed9df\"}\n[2026-05-11 13:39:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:39:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8cbce7f9-e566-4a08-a150-d0d39f36bc86\",\"trace_id\":\"ff2cc726-31f7-44c7-83ba-7f3a6069c746\"}\n[2026-05-11 13:40:04] 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\":\"d84c2b44-5939-4f46-bf78-ab7eda9d7455\",\"trace_id\":\"2e4ae448-ca0f-4897-9976-2a9cfc0ef859\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"13bc8eec-5756-4268-a888-b25e3e8c08f3\",\"trace_id\":\"9bac84f0-1a71-4968-a62e-1c69f1fa9280\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53696cd3-9108-44ae-b1eb-f5a85bae7c30\",\"trace_id\":\"41c39863-48ff-4571-bb8f-fbe7c92a3488\"}\n[2026-05-11 13:41:10] local.NOTICE: Monitoring start {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:11] local.NOTICE: Monitoring end {\"correlation_id\":\"80d6d93f-f7a9-44c8-8f14-3915f9d72336\",\"trace_id\":\"42f63b95-9a15-4dc1-a95a-0671ebc53865\"}\n[2026-05-11 13:41:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a003867c-f35d-4eb1-8ad3-80f74b363e2d\",\"trace_id\":\"a3d022b8-1aa6-4732-9c46-aa523e663d2d\"}\n[2026-05-11 13:41:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd39ab87-9b9d-433e-91bf-d50b61310b94\",\"trace_id\":\"9e47c8e4-bd94-49d8-a04f-171ac70428c1\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c8cd50b3-61ff-4410-8f73-f4dc6bdbc891\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24444312,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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.39,\"average_seconds_per_request\":0.39} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":406.42} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":538.8,\"usage\":24531944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"25a2361d-508c-490d-8747-60f95a8c22e6\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24509944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] 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\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":43.26,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"544a4864-c617-4df1-8343-fabdd9f03dc7\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24478176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.46,\"usage\":24494296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"41b11bec-9a4b-43cb-8682-8f6c452488e5\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24454936,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:41:39] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.88,\"usage\":24497880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"34239991-e175-4742-aeb4-c5001aca3139\",\"trace_id\":\"5fc6e11c-0abc-4db7-8f0d-ff9223c3d3e5\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"298eef3c-4469-4c89-9cd2-742340d8973e\",\"trace_id\":\"7803e149-abb6-4611-a21a-d5074e71e7c4\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"70817844-003a-4637-8528-3f94ef173067\",\"trace_id\":\"c8503c83-70c8-4051-a224-0ec100507ad0\"}\n[2026-05-11 13:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:27] local.NOTICE: Monitoring end {\"correlation_id\":\"9a1c94d3-57ff-4f1a-8e71-49b38d627ec0\",\"trace_id\":\"711f96a8-ff78-4e9f-bb86-beff87d3a7ee\"}\n[2026-05-11 13:42:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c053203b-fcb5-4828-94bb-9dfdbe6e2c57\",\"trace_id\":\"8fcce9cf-d658-451e-8a9f-da546be9948c\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:42:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4d5228ef-540c-444a-ad33-6e7f65aa52f1\",\"trace_id\":\"ad388794-a96d-4c88-8b3d-4843b531d426\"}\n[2026-05-11 13:43:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:43:00] {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf2237fc-6eb8-40f5-9bf5-2db251140cd0\",\"trace_id\":\"850a22af-dbf3-4d1f-b483-04efb71d7ed9\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8632c840-d8eb-4bb1-a92a-94745d8567b2\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:43:12] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"3ee4ddb2-8890-4414-ad45-55850bcc6567\",\"trace_id\":\"da34de6b-9548-4bc7-b6a7-09bb59200f0b\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36833577-be45-4155-881b-41a00a1b6b3a\",\"trace_id\":\"2ac22e5a-83c3-4191-abba-0735fcf84d09\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6603d60-e38d-4e08-8b4f-fec82585a79b\",\"trace_id\":\"c93f3f3a-d6ba-40d9-9564-79dc80581f08\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring start {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:12] local.NOTICE: Monitoring end {\"correlation_id\":\"83edd650-ac08-46e4-95b3-32fa5fe0dc03\",\"trace_id\":\"e7845fb4-159f-461e-8ba8-a1d97f05a7ce\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3130dc4c-f04a-4da9-9f6b-bbf005fbfded\",\"trace_id\":\"a450fdba-73f6-4d19-8334-0f5113fa7283\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e056c58-f9c6-4e3f-be6e-831d0d8f8b1b\",\"trace_id\":\"bf6c79db-1ca3-4168-8c52-e105000c3a16\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:42:00, 2026-05-11 13:44:00] {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ea7e2ed-22f8-4950-b96c-d9533d4520f8\",\"trace_id\":\"aff7f414-d5b7-4c94-bb8b-274e91b59bff\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f777a77c-187a-43d6-90ca-a3024023505a\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:36] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24459464,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] 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-04-28 06:31:37\"}}} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":146.1,\"usage\":24502600,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9d891ca7-944d-446c-a864-725a4b5ca12f\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24458392,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:38] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.5,\"usage\":24503216,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"63125199-bc3a-44f4-8cc9-26ce6214a014\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24458384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:40] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1778505284,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:41] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1216.11,\"usage\":24477088,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"831c6f7a-3be8-4d58-b9ac-14841d01842c\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24458576,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:42] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":33.04,\"usage\":24503360,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"982dee15-4e62-4be4-aead-aaf60ac3ff53\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24458704,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:44] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:45] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1320.87,\"usage\":24480024,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"2478fe6e-d9ab-4e9b-9a06-f1489efb3069\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24458664,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] 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\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:46] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":58.58,\"usage\":24501024,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4b687a03-6b59-4d1f-bbee-058ba2279b03\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24458040,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] 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\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:49] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":55.53,\"usage\":24500080,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"36f75c09-d15c-40bb-b9a7-958d4db68b88\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24458224,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-11 13:14:54\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:50] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:51] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] 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\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-11 13:14:54\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:44:52] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":2668.86,\"usage\":24473376,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"9ae440fc-00ea-45b1-ab7d-922c8d159630\",\"trace_id\":\"949d167b-6cc4-4115-aa63-c172332df548\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"21044574-245e-4117-9f96-76dc72ad1981\",\"trace_id\":\"03c5297b-72b0-409a-96a2-61d19f243ae8\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4b8374c9-335a-4507-bbf4-8de4ef41161b\",\"trace_id\":\"0c0e158c-bf30-405f-aec5-29daa6c7c7a9\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring start {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:25] local.NOTICE: Monitoring end {\"correlation_id\":\"cf964223-6fe4-4b0f-9765-848342d4ba6a\",\"trace_id\":\"81e86cb8-d21a-4235-add2-21c7ca404433\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ae82e603-3c96-4880-ad29-6690d3a68abf\",\"trace_id\":\"ccbb0a0a-e394-4398-9bcd-27428117cb22\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"25ff072e-66ab-48db-a420-205d23e9285f\",\"trace_id\":\"daeff4b0-3eb9-4d86-9e9e-9ab8aaf8325e\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7158789d-ad1b-49d6-9e69-f4fcc13adfa5\",\"trace_id\":\"bff9a40b-3933-44d5-83ba-42e6aa70e6b1\"}\n[2026-05-11 13:45:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"869c5dcd-8fd7-4474-a124-aa6d70175990\",\"trace_id\":\"e148f84c-0a02-4da4-9421-a8123e953950\"}\n[2026-05-11 13:45:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:45:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"156f630a-290f-4caa-ad31-6212ba0a7c55\",\"trace_id\":\"af0f0595-338a-4516-af11-c4c271e06697\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:36:00, 2026-05-11 13:41:00] {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16265aba-4b24-4f54-b229-6bdc45ccb2d5\",\"trace_id\":\"1d6f6870-2594-40b3-950c-956205b47e18\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:41\",\"to\":\"13:46\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:36\",\"to\":\"03:41\"} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b75f7239-8f4f-485f-b3d1-d76a67c95df8\",\"trace_id\":\"31a4e7d4-5c54-401a-9a52-75b1d225ad55\"}\n[2026-05-11 13:46:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] 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\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"ab89b829-09c6-4325-a696-9462375b3882\",\"trace_id\":\"33f9c7ee-205c-460d-b49b-d46154bb8aeb\"}\n[2026-05-11 13:46:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:48:30.117017Z\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"148b20c8-7cc4-44a5-9aaa-5bb232dc2775\",\"trace_id\":\"6fdd1b34-9666-4e4b-9ac8-85212d42a83c\"}\n[2026-05-11 13:46:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812763,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812764,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812765,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812766,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812767,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Dispatching activity sync job {\"import_id\":812768,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9313c6eb-6c06-4d15-b6e2-dd8711ad1660\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:39] local.ALERT: [SyncActivity] Failed {\"import_id\":812763,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"43339947-1d19-4bc9-b95b-3a81f438bbe3\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812764,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e0a43b2c-334b-487a-bee4-be91f2eaf0ca\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.ALERT: [SyncActivity] Failed {\"import_id\":812765,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"92f6ea30-ecdb-4bf6-8ae2-f525cad5d703\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812766,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"1bd86b55-a85a-482c-adea-477f787f3bd7\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:42] local.ALERT: [SyncActivity] Failed {\"import_id\":812767,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"5a3edb1f-374b-4b35-bf75-96cdfda5d76d\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Start {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:29:00\",\"to\":\"2026-05-11 13:45:00\"} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] End {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:43] local.INFO: [SyncActivity] Memory usage {\"import_id\":812768,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":26332216,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"622b6e7b-3ecb-42f6-a8ee-80b8eaadcc03\",\"trace_id\":\"822930da-d0f3-4abe-ad32-5daa41eb7490\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec49a956-7419-4734-a183-fdba53b0283c\",\"trace_id\":\"dee6bf7d-b702-4a65-a0f6-bde4c5fa49a2\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fdd6c6bd-4a3d-49cc-948e-ac3ffe347bb4\",\"trace_id\":\"2713061a-1824-4206-ade8-fffeeb229a9c\"}\n[2026-05-11 13:46:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:46:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6de2e2f7-7819-4633-8ad7-82860ca7cae3\",\"trace_id\":\"774614d8-6fbb-4afb-9777-9efccf8b9221\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a9d62ea-c549-45ea-b594-66d83937b35c\",\"trace_id\":\"828c9d41-69e5-4be9-bc1b-6e206066cbbd\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b18a48dd-9cd7-4b36-9e0c-d254b29a7d18\",\"trace_id\":\"23d7be42-def0-4b76-a58b-0e8074a083d0\"}\n[2026-05-11 13:47:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:26] 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\":210.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"bd13bd0e-5020-4efb-912b-9161ad43abc3\",\"trace_id\":\"fa0836d6-829c-4e1f-94d3-0a672af01d51\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring start {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:34] local.NOTICE: Monitoring end {\"correlation_id\":\"808117de-0426-4b16-9ce4-c2b3a02a9edb\",\"trace_id\":\"dabb0f72-00df-4f16-b442-9eb2b9470443\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ba92b48b-35bc-45e4-a5b8-7a27879ef220\",\"trace_id\":\"c125ab6a-9e2b-485b-8313-e3b8a07e388e\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:47:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4bdafeca-5856-47d1-b624-77a435b472ae\",\"trace_id\":\"1ed55c3c-f501-4a83-b9e3-dfb23272619b\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"008ae532-95a2-4c42-954a-7196a7f4797f\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:48:05] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"78893394-2e67-4ee9-82f5-c55eee7eb0b0\",\"trace_id\":\"2884228f-76d9-4e27-88ce-cd40d951c839\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"805ae0e4-ac39-41c7-9cdb-3245a74018c2\",\"trace_id\":\"0abd5349-90cd-42e6-bc03-8fd1b3c0d4d2\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c9c6d1a3-3a8a-4c77-a89a-033756b01156\",\"trace_id\":\"54b77871-92c6-4bb5-966e-a8f644a1e683\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring start {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:13] local.NOTICE: Monitoring end {\"correlation_id\":\"074832f6-3992-421c-8a62-0e79fab8e3a5\",\"trace_id\":\"c43697cc-08b4-4395-a6e5-b91a0a1bfd31\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3be25c2f-8a45-4fb4-98d3-0b1953734f38\",\"trace_id\":\"680c692b-8893-480a-a64d-461414b2c24c\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:49:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"aa776739-b50a-4ad6-8803-baf2b6c0571d\",\"trace_id\":\"3162834b-b9e6-4db3-b404-1ff892a82d10\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"52d06f02-beb8-4b10-8f1b-85bf0227f6a5\",\"trace_id\":\"b503059d-f8f0-4c93-a8d5-f0dd41b8dddf\"}\n[2026-05-11 13:50:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e428175c-a464-4414-bc92-66fd03ef65f5\",\"trace_id\":\"2d8474d9-7200-4bad-848e-fc2c903c259e\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring start {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:21] local.NOTICE: Monitoring end {\"correlation_id\":\"3f47457d-d919-46a7-b25b-043c73d7466e\",\"trace_id\":\"45eb3e11-0ce8-4fc2-af65-d4f926dcb744\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"32a4d550-50d9-4fab-8b0b-2405f042477e\",\"trace_id\":\"51dc9dee-b34d-41ba-8a11-1e01d79d06b8\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e7b82d2c-953e-4f21-9960-832b0be8d302\",\"trace_id\":\"b3d37f8b-cab7-44d1-97dc-a1b7d57c2893\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:48:00, 2026-05-11 13:50:00] {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d267ca1a-34c2-4a87-b9a7-89be51c2bd8b\",\"trace_id\":\"f3494a10-473f-4bb0-90d7-f5b1bb76a4fb\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c188555f-c8ed-4002-a16c-640e9792a4e4\",\"trace_id\":\"18366cdc-df8c-43a8-8f2a-b12ca7a95492\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5dd289b5-c294-4d5e-ace4-beb0ed565856\",\"trace_id\":\"34bc2eb1-a3aa-4d49-b1d6-e0248ebf4890\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:50:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1510bc1c-52c3-41cc-b210-5ebce247ba87\",\"trace_id\":\"b4152afd-4fa2-4113-8a81-a92f3a8d916c\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:41:00, 2026-05-11 13:46:00] {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0e306cd-3e10-4604-aac5-fcf106ae9dc3\",\"trace_id\":\"1ee2a50c-246b-4aeb-b72a-3c9cc3e430bd\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:46\",\"to\":\"13:51\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:41\",\"to\":\"03:46\"} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"edf5bf7f-762d-4f49-b29a-bec9132b2db6\",\"trace_id\":\"af50a5a2-a611-4858-8097-9c498b6bf13c\"}\n[2026-05-11 13:51:12] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:12] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] 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\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:13] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"411257dc-29ed-40fe-8de6-aac03ded8e9a\",\"trace_id\":\"31ded10a-c831-4089-bec3-c4dfecddcf93\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:53:25.577044Z\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e87bed6b-d97e-48fe-a020-cb1b929feafc\",\"trace_id\":\"0172cf01-150d-46cc-8b97-6cf0a1a08049\"}\n[2026-05-11 13:51:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"830fc218-9620-4cf2-a2ee-dc4b4f6359e4\",\"trace_id\":\"7a6ce08d-5141-4da4-956a-ed0385a1a3f1\"}\n[2026-05-11 13:51:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:31] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b0e4d678-c64c-4535-972a-748dd3c337b7\",\"trace_id\":\"258ea5e7-50fa-4351-ad81-25de47873541\"}\n[2026-05-11 13:51:36] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9385abd1-5377-4d99-92e5-bfd42559d9ab\",\"trace_id\":\"eeab8de5-7628-43e1-911a-ccd64c05230d\"}\n[2026-05-11 13:51:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"71505d87-9b8a-4ec6-a050-126d9d32e2f4\",\"trace_id\":\"3d219501-7f11-4838-abe6-3258e0c44823\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"28b5cf78-0114-43e3-a441-7d6b90c03b29\",\"trace_id\":\"40252436-3ad3-4072-b00a-07526a3675f0\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":59,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":341.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"d0707a1b-3037-4333-bb53-1dcaf46cf5e3\",\"trace_id\":\"18e9a428-d066-42b7-8ed7-3f659492daa8\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring start {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:32] local.NOTICE: Monitoring end {\"correlation_id\":\"5dbf05ef-e118-4f02-8c19-e0e2dbe61195\",\"trace_id\":\"6f9f9518-5608-4f48-8113-91753af957ca\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cde7656-a05a-4c1d-a1d5-ead35ea11fbf\",\"trace_id\":\"035a92f8-5d59-45e0-b957-48e57c173841\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a8140769-6f89-44ab-88e8-3ae3593694fc\",\"trace_id\":\"8a90c5f6-d6c4-41d2-b07a-34023a891bf0\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:52:00] {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6e56e239-c3d8-41e0-ae03-c5f9ddc8edc1\",\"trace_id\":\"af2787c7-0138-4abe-96d3-94e39441f17f\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5218fea4-611f-4078-8aa6-381f5cbb7547\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:54] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"def4e702-8b6a-4c5f-a0ab-95b0f743a636\",\"trace_id\":\"b48f7cb6-c22b-42ab-8973-60fa38b7e9c6\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:52:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f98967b6-ba53-49ac-9dd5-e925c1ff67ca\",\"trace_id\":\"bc775d49-f19b-4207-83ad-5da56a4cee21\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cf4d2db7-4610-45eb-bbf1-580fd41c7102\",\"trace_id\":\"81a49cf4-2686-4101-ab88-c02554fd47cd\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c58d06b-9233-4a98-b734-6ef32d803a0a\",\"trace_id\":\"24ab8c6b-1d8a-4e3b-9151-baaa56eaca71\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring start {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:19] local.NOTICE: Monitoring end {\"correlation_id\":\"20c25c19-25e5-4dbd-8c3f-f1b4497e2efd\",\"trace_id\":\"22bad686-c9cd-4c90-b766-562c6b502dac\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"91c6a7d3-66f0-4c5d-99b0-7e771b0d3d94\",\"trace_id\":\"e48654cd-fe07-4292-afa3-60077d62dbe9\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e997a6da-90db-4002-9725-bef76ea6206d\",\"trace_id\":\"70877416-fab0-4248-8f99-f3d0f0464b6b\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:53:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f013df7a-72c5-44d5-a17a-f8c81ed9d85c\",\"trace_id\":\"e5a11dcf-7bf6-478d-b3d1-41e438535435\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"012ce104-c59c-4f95-bd99-99fe6d5a5c3c\",\"trace_id\":\"ec52285d-723c-4cc6-8e00-d8311c462931\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ec30a79d-ab4d-45fb-aa07-3444a3acd0d2\",\"trace_id\":\"c8ff6709-aea3-4107-a667-fbc43c9c01e9\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring start {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:13] local.NOTICE: Monitoring end {\"correlation_id\":\"82903de3-9dac-4950-b71d-17a5ac19a71f\",\"trace_id\":\"da746171-92b4-459b-8c95-f5f4f45950f5\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d13f2e49-a6a0-40cb-8ae4-14fced39e3e8\",\"trace_id\":\"0e6910ee-1eae-420d-8959-48daf792d928\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"de6440c4-1981-4daf-a8ed-aeb97781501e\",\"trace_id\":\"69bc356e-ac77-4aaa-bf4d-3c1ddb1bf89a\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:52:00, 2026-05-11 13:54:00] {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8d46c0a-2687-49c2-97b9-68a0712c3249\",\"trace_id\":\"d3ddb065-6671-449f-b89f-4493636bdc24\"}\n[2026-05-11 13:54:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"283dd142-1f97-426e-a22f-d4600c20045a\",\"trace_id\":\"d92c9cf8-5786-442e-91c4-c8b60a7ecff1\"}\n[2026-05-11 13:54:37] 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\":\"1bc14715-e291-4c96-bc1f-4c27142d8233\",\"trace_id\":\"229a5de8-998f-43c2-b111-682317370951\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"efd5d998-ba58-4314-8cb5-0e3864f01c2e\",\"trace_id\":\"65f24243-01cd-442a-a8c3-2f39cf7f8736\"}\n[2026-05-11 13:55:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d7752bf0-aef5-4d4a-973e-7d7e0dd5734a\",\"trace_id\":\"8724b88d-cbac-4ef1-854b-b551cec6d445\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring start {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:14] local.NOTICE: Monitoring end {\"correlation_id\":\"15615210-cc29-450d-8b44-1a5cef89f7d3\",\"trace_id\":\"2e642501-71d2-4241-8eaf-8b6096a84c5e\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"93584dd9-036e-430f-bf90-02553592e1ad\",\"trace_id\":\"674efae9-de9e-45f9-9d32-b308d6cd82c5\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eac6236b-a6bf-46d7-88ac-882715cd4f3d\",\"trace_id\":\"5c06ea95-0221-4916-a247-e22a67f06411\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2226ab8c-d0ba-45cc-92ce-3d129246b341\",\"trace_id\":\"edc5b81c-5a84-442f-8265-c1c826bb492a\"}\n[2026-05-11 13:55:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9cddbb78-a182-484f-8020-f49b56f01fc2\",\"trace_id\":\"6174f742-f627-483b-9da0-3cc339b59e41\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"16e793f2-9340-46ce-98f4-dd1e12603d07\",\"trace_id\":\"65502c70-b9a3-4ba3-b0f3-0d44dcc8eb66\"}\n[2026-05-11 13:55:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:38] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:45:00, 2026-05-11 13:50:00] {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8f025b41-8688-41f5-9715-27be2c09de7f\",\"trace_id\":\"e97b7627-57cd-4a06-89b5-5cd3bcac99cf\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:50\",\"to\":\"13:55\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:45\",\"to\":\"03:50\"} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80e1b659-fe20-465f-afa0-02f17e6a592e\",\"trace_id\":\"6fc0295b-6b12-4ecd-8afa-b42404c8c7ba\"}\n[2026-05-11 13:55:44] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] 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\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:45] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9778ac5a-8941-4cde-83f2-8bd2a8a0a3bc\",\"trace_id\":\"228081c0-0043-463e-88b8-d2e271e6731c\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T13:57:52.744117Z\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"dc0118b6-4bb1-4104-ad18-5c1d2d895fb4\",\"trace_id\":\"c3a11b06-7636-40e6-88d0-451dbd88aa0a\"}\n[2026-05-11 13:55:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e2fbee8-fd9d-46cd-acee-ffda1dd7af63\",\"trace_id\":\"58c9b598-f3c1-4ff8-870e-71346c646d84\"}\n[2026-05-11 13:55:53] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:55:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:03] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4ca97663-350c-489e-bd78-331c596cbab1\",\"trace_id\":\"ae3cbd87-ce97-4239-95e9-ae9d4fac7f2d\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f217059a-806b-493d-b6be-d3858d55433d\",\"trace_id\":\"dc56d0a7-93ea-4604-9c15-03607910b07b\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring start {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:14] local.NOTICE: Monitoring end {\"correlation_id\":\"ba929c03-e055-40c8-ae05-751985972c3c\",\"trace_id\":\"905aadc0-0776-4add-93b4-dfe6cba880ea\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be7b6d05-69f9-4c94-ba84-bd1dfe34ca00\",\"trace_id\":\"7a195d87-7b67-4e87-821d-50ea8fe8bd3f\"}\n[2026-05-11 13:56:18] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"98818824-47df-4d31-99b8-162a4c06501c\",\"trace_id\":\"46a8fd8a-712f-4ed9-865a-c2bb919372c5\"}\n[2026-05-11 13:56:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:54:00, 2026-05-11 13:56:00] {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a37cacfd-89b2-475d-91ce-66005075c445\",\"trace_id\":\"3969be02-4aa3-4fdc-a1c1-86a58e33eafb\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9eb1ea7b-c43f-46e2-9372-f2d4cdf82422\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24458608,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] 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\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":34.89,\"usage\":24520672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"1235e957-f70d-4c9f-bb56-0d9645ebef6a\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24478888,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:29] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:30] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] 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\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":258.33} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":1713.41,\"usage\":24655720,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"cb84d853-e244-43a7-b24b-6a7d31171732\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24630384,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":19.06,\"usage\":24604000,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6e476acf-dcc3-4396-beab-669505e72edf\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24564640,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:31] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":22.43,\"usage\":24607584,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"584c5b01-6608-4092-b90c-17b6eefd7f33\",\"trace_id\":\"e483dbf0-9251-46ab-bb0e-5275a9bd0a92\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88a36667-4702-4546-a524-676891d5330f\",\"trace_id\":\"46249aab-0656-4da1-9d63-cb34e4729ffd\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7bd82b92-591f-48bc-af98-2dfd5c944826\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"f818732d-fb9e-4681-8fec-d2a9e3bee970\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:43] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"08e4432d-4464-4c46-89da-06ed9a38c6ea\",\"trace_id\":\"b37eaa82-fe4b-4f1d-9c7e-74c4e022d229\"}\n[2026-05-11 13:56:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:48] 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\":204.4,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:56:49] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"b690bb40-4494-4b0e-8d71-7a06c3840aae\",\"trace_id\":\"41b6bb5b-4806-4f2f-87a5-8fb8a532f43f\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b4a2d3a4-aa5d-4904-b9e1-fcc89567576d\",\"trace_id\":\"a407ca86-0926-42ed-b3e0-1fcf89da7def\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1441f987-e752-4fb9-b59b-6678d31be318\",\"trace_id\":\"dab177e1-67cc-4c57-975b-12b9fa178096\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring start {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:14] local.NOTICE: Monitoring end {\"correlation_id\":\"9bedd6ff-c7ac-49fc-9089-ee30b7232ec8\",\"trace_id\":\"09724f27-a2c8-49cd-8b26-2cf0c25f9ad2\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c6684ee2-e90b-4c8c-9ece-a459fe1e84cd\",\"trace_id\":\"f7d1145b-e42a-4eb7-9b37-ee998dc390eb\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"215232de-693e-4d83-829d-aa869a291c99\",\"trace_id\":\"8c700cfd-6c1b-4c84-91d8-063aff92cda4\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6ef14397-4f2b-4f3a-b1da-35e4a37e8379\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:57:26] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"9bda0e43-3f7e-427e-87d2-e8445baa4f60\",\"trace_id\":\"32e0e45f-423e-4cfa-b215-b13e1e568c37\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6101d5f2-3b1f-4ce3-b752-1b631b319d92\",\"trace_id\":\"0fec7c22-b5cd-4e8d-a503-b1aa8fc9432f\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ac7312f9-83d2-45c4-a4d6-181ba94f048b\",\"trace_id\":\"0c4fb886-4fb3-4249-84dc-2f58393fb8fb\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f5ab6eea-030d-46b4-828d-27216f943a84\",\"trace_id\":\"bcede9da-8de3-49b5-a635-7db4f1ae50df\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2b1b6f88-6de8-428a-b918-20939074aa9a\",\"trace_id\":\"759dcc4a-0c33-4fc8-9bbb-457463b817dc\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"33add1a5-26d2-40e8-860e-b6f02e6bfdc3\",\"trace_id\":\"d3df0398-fc68-485f-b9e2-ad328dc7a423\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:56:00, 2026-05-11 13:58:00] {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cb13493d-11b2-4aa8-bb40-2e9e501614b8\",\"trace_id\":\"53a7e60f-aee4-46de-ac4a-e205054f6fc1\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:16] local.NOTICE: Calendar sync start {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e70180b4-c8d5-40ce-a077-4509565c251f\",\"trace_id\":\"c3f90a79-900b-4e5d-a39a-f327af5f692f\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] 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: a169a791-b001-4fad-ba55-b32c4d582800 Correlation ID: 2aa041cb-12e7-45eb-9985-e318ba582529 Timestamp: 2026-05-11 13:58:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:19Z\\\",\\\"trace_id\\\":\\\"a169a791-b001-4fad-ba55-b32c4d582800\\\",\\\"correlation_id\\\":\\\"2aa041cb-12e7-45eb-9985-e318ba582529\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] 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: ca259158-2666-4879-bfc6-d5d180c80200 Correlation ID: 2a19cde0-8041-4f53-9ae7-3be53de7a727 Timestamp: 2026-05-11 13:58:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:20Z\\\",\\\"trace_id\\\":\\\"ca259158-2666-4879-bfc6-d5d180c80200\\\",\\\"correlation_id\\\":\\\"2a19cde0-8041-4f53-9ae7-3be53de7a727\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] 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: be078283-f43b-48e4-a24f-019c05b41e00 Correlation ID: 8b8321eb-e4d0-4bf0-a91c-d78091c15c3d Timestamp: 2026-05-11 13:58:21Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:21Z\\\",\\\"trace_id\\\":\\\"be078283-f43b-48e4-a24f-019c05b41e00\\\",\\\"correlation_id\\\":\\\"8b8321eb-e4d0-4bf0-a91c-d78091c15c3d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: d2b1ab4f-ad9d-4772-abd4-42eb54050500 Correlation ID: 48d9f485-e79e-4772-8028-9d6507675b5d Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"d2b1ab4f-ad9d-4772-abd4-42eb54050500\\\",\\\"correlation_id\\\":\\\"48d9f485-e79e-4772-8028-9d6507675b5d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] 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: 28da3b74-adf9-45c8-a356-996442690300 Correlation ID: 2e7cf260-e88b-4800-adb0-ad965b6470f9 Timestamp: 2026-05-11 13:58:22Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 13:58:22Z\\\",\\\"trace_id\\\":\\\"28da3b74-adf9-45c8-a356-996442690300\\\",\\\"correlation_id\\\":\\\"2e7cf260-e88b-4800-adb0-ad965b6470f9\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b6080daf-4fd6-43f1-aaf2-c7476ec3627c\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"0723937d-64f5-4bec-b769-0349a1ee4f87\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] 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\":\"fa67184d-f3cf-4545-8a89-8c6851a6c89f\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:58:23] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"a39488f5-4f29-4bcd-b2a6-0273cab4ebb7\",\"trace_id\":\"d448569b-5cee-405e-acbe-3b337b3f05ee\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"50ec3629-20fa-4f26-99c5-32876ff63a2d\",\"trace_id\":\"6de6e07d-ce47-4513-99f9-2b6012d0e4f7\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"03ed70fe-519f-4c4a-9f9b-0100e70a0930\",\"trace_id\":\"d9eff4aa-0516-456e-84c9-321ab9eb9bb3\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring start {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:09] local.NOTICE: Monitoring end {\"correlation_id\":\"f62936c7-ef96-43b4-bee4-da9b8e3edcb0\",\"trace_id\":\"948c11f8-44ac-409c-950e-befd48bbce29\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2d062fce-1c27-41d5-8fde-4e80d8be7497\",\"trace_id\":\"9220a4ad-7506-45ec-97aa-d67ffd0c30ca\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 13:59:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a4c494dd-1977-4159-8e73-89989becbb7e\",\"trace_id\":\"1f064d9e-fccf-4ee9-abb0-6021c3b528a7\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"438618bf-a205-460b-b1e0-1c986b8ef802\",\"trace_id\":\"f5710e57-df66-49b1-8f21-7498ea078c6f\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5f5af1a8-ca23-4c67-abba-93a059fae631\",\"trace_id\":\"e3590058-e3b3-46e1-bc2e-f1564e43f075\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring start {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:14] local.NOTICE: Monitoring end {\"correlation_id\":\"aaf01968-2e5b-43ee-9479-e89d17506049\",\"trace_id\":\"06275002-7e19-4bbe-8b71-0cb6327016af\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cacf13d7-12e5-46a8-94f7-f80db04f6807\",\"trace_id\":\"864ccecb-ecfe-40db-bf83-8ad3a6be4aa7\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df05d182-7ae8-4d97-a124-143eb8b47c20\",\"trace_id\":\"ea67f6cd-61b4-48c0-8113-cace8dfd283d\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 13:58:00, 2026-05-11 14:00:00] {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e4e93c3f-a37e-48c3-b831-41ae5d8bb8f1\",\"trace_id\":\"190da4c9-4b2c-4c32-91f1-02041b295bb1\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d1484b3d-e307-429f-8fda-9bbe89019cbf\",\"trace_id\":\"661b29f4-470d-4d6d-9bd0-434eb1ba750e\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7f45ee4-dec6-42f8-8b27-2517be1eaa62\",\"trace_id\":\"7aed0974-8697-4bea-9e7f-43902714fa9a\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ef609b82-5400-44de-8ad4-c8c2e091b130\",\"trace_id\":\"999d6c06-9bdf-4758-bca1-09ea92b67629\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:50:00, 2026-05-11 13:55:00] {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ab802883-4196-47cd-b0a9-04439bd83f8b\",\"trace_id\":\"4fcc94fa-488c-44ed-934b-c5d2ad0442c6\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"13:55\",\"to\":\"14:00\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:50\",\"to\":\"03:55\"} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60a883ee-3ee5-4dcc-aa73-c39d2650db1c\",\"trace_id\":\"ce521ba2-f61c-42b8-9fd7-d38aa56c0265\"}\n[2026-05-11 14:00:48] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] 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\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:50] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"8dc07b5b-420c-48ce-8090-797c265493b2\",\"trace_id\":\"dbc93b78-f459-4a9f-b502-2c3ddbc025dd\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:02:56.496124Z\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c75226e8-b110-404a-9020-5ceec3192076\",\"trace_id\":\"5139e92e-50a4-47cc-9326-f8397cec24c8\"}\n[2026-05-11 14:00:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ce44e8a2-305c-40fd-83f7-d5454f4a2a57\",\"trace_id\":\"69504f9f-f4ab-4646-9d1e-185608f40be6\"}\n[2026-05-11 14:00:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:01] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"26c6f411-1d50-4756-b36f-b2a118e81303\",\"trace_id\":\"b09a1e0c-0cac-45ab-b217-728ae30f2827\"}\n[2026-05-11 14:01:07] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812769,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812770,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812771,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812772,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812773,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Dispatching activity sync job {\"import_id\":812774,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"72786c79-9304-41dc-9643-879c76b4e842\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.ALERT: [SyncActivity] Failed {\"import_id\":812769,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"c85a3c87-e10c-4ad7-89d3-69b2bdd72147\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812770,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"357b8238-2b5f-41ed-97fe-478eca6c3005\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.ALERT: [SyncActivity] Failed {\"import_id\":812771,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"d61540b8-7c08-454f-b5b6-4f18fee7b713\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812772,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"14974337-fa7d-4969-afff-f8d762d99f72\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"92fa1705-efc5-4c88-90ff-e3303dd1447b\",\"trace_id\":\"3803e6dc-e63e-4bdd-b561-d38c88c77af8\"}\n[2026-05-11 14:01:14] local.ALERT: [SyncActivity] Failed {\"import_id\":812773,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"0a0ebd72-c623-4be6-a54b-b11c545efdb7\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":408,\"provider\":\"hubspot\",\"refreshToken\":\"de4e47eb985578f4218833e763e31059e88b562e87e10749b3389be2328f0aa7\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":408,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Start {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:44:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] End {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:15] local.INFO: [SyncActivity] Memory usage {\"import_id\":812774,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27732168,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"ccc35f9b-3c9a-47e2-aeaf-a9784caf41da\",\"trace_id\":\"5cc55060-741c-4eef-8723-3a0963fc1d1c\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-stuck\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1a45ab99-a552-41a4-a716-2c79ff6230f0\",\"trace_id\":\"c2bfae2e-9c2c-458d-90c2-cbd65107eceb\"}\n[2026-05-11 14:01:22] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fd471539-3472-41af-9545-625860b55af7\",\"trace_id\":\"8a8c9943-1b8e-42e8-ab07-3056c4712b50\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c659fd4c-6486-4ae6-97e8-b3b6897675df\",\"trace_id\":\"5a0c83b3-6cd2-4b55-92e7-525b3394ff11\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"097c1835-147f-49f6-a808-6db0d1eea4d7\",\"trace_id\":\"30eb1f8e-520a-4fda-99e8-e740daa34139\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f7db165e-9f1d-4fa0-9ad2-c49edaa9ed79\",\"trace_id\":\"e59bc32a-1b94-42a2-a2f5-b8cb4033ad5c\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"51ea6a9f-4981-4628-b14f-ca44a0cdfd4d\",\"trace_id\":\"2a16db0c-0cc4-42c7-ba39-b55341cff9ff\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Dispatching activity sync job {\"import_id\":812775,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"09ffe85c-b0da-48f5-b5bb-b50c9f447f44\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Start {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:00:00\",\"to\":\"2026-05-11 14:00:00\"} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] End {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:46] local.INFO: [SyncActivity] Memory usage {\"import_id\":812775,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":27890424,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"b2fc287f-03c8-4b5a-910f-81fe586839af\",\"trace_id\":\"9019ea7e-02ab-4ac9-9184-e45924fd9a8e\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ace783d2-59cb-45cc-b324-dda5a07a3f65\",\"trace_id\":\"a4157263-540f-4089-acf4-336703178293\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":85,\"uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1677,\"uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Sydney\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1678,\"uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Australia/Melbourne\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: [Jiminny\\Component\\Nudge\\Command\\NudgesSendCommand::iterate] Processing user nudges. {\"id\":1848,\"uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\",\"timezone\":{\"DateTimeZone\":{\"timezone_type\":3,\"timezone\":\"Antarctica/DumontDUrville\"}}} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4faa0f82-282c-42db-af76-cf8e51767a59\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":85,\"user_uuid\":\"145091d4-2af5-43d5-9152-80d604813027\",\"email\":\"viktoria812337@gmail.com\"} {\"correlation_id\":\"f6b03f15-4d91-405d-a196-9ead4152179d\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1677,\"user_uuid\":\"653f80a1-51d1-44b8-9fc6-9ade1439885f\",\"email\":\"james.niroumand@rosterfy.com_\"} {\"correlation_id\":\"6926e90a-dc8b-4fcc-a328-d0433d13ae20\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Inactive and deleted user searches and nudges removed {\"user_id\":1678,\"user_uuid\":\"12c184a5-ea33-41a4-9375-0286eb58a49a\",\"email\":\"david@rosterfy.com_\"} {\"correlation_id\":\"c55a76fa-0ca9-4007-b4de-218af3c89067\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] Start dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:51] local.INFO: [Jiminny\\Component\\Nudge\\Job\\ProcessUserNudgesJob::handle] End dispatching Jiminny\\Component\\Nudge\\Job\\ProcessNudgeSearchJob. {\"user_id\":1848,\"user_uuid\":\"eb7f91d5-861f-4fe4-b14d-18cab17acb99\",\"email\":\"belle.koelpin@example.net\"} {\"correlation_id\":\"3311df52-7523-4f12-b4a0-46b15ae91aea\",\"trace_id\":\"bd5bb7e8-3a86-42dc-8623-ad7fef82064c\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] 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\":199.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:52] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"75c006ff-9c94-44b2-8dc3-55ef4bd27351\",\"trace_id\":\"6e0779e9-a310-4f83-943a-94e38a5c8f8a\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:01:57] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f0444933-7e2b-4aa0-8cbe-041a3199a6c1\",\"trace_id\":\"3e23ea4b-62f8-4e99-a32a-09af999cfb61\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9f30cc6d-c0ce-4fe9-a41b-45877c34133f\",\"trace_id\":\"28349bea-c7ba-49bb-8897-bd92496aa6b1\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1101da3a-f41a-4c9b-ba0f-c3b9d28dd8b4\",\"trace_id\":\"43d4268d-3438-467f-90a3-dd2a7c235da9\"}\n[2026-05-11 14:02:14] local.NOTICE: Monitoring start {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:15] local.NOTICE: Monitoring end {\"correlation_id\":\"e0c45af8-4388-40a3-ac81-f4f49af330ef\",\"trace_id\":\"fa2d75ba-7494-4ec1-9a54-aebb00d5d0ab\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"abaf03af-7a6c-4dee-9d8f-b04cb42603ec\",\"trace_id\":\"cd8d8cd9-5d29-418a-83f9-13879ccd9ba6\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3c93fe35-99a5-45b4-a51d-bb2990c786ea\",\"trace_id\":\"af9eb59d-491d-40bd-9d33-6e8b8a120fde\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:02:00] {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0cb720ec-e424-47e5-979b-5ae8e8137193\",\"trace_id\":\"16d36966-11f8-461f-b02b-6c57b5a74b7f\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f2c51a2-1984-4fa3-8c29-414f08f61615\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:28] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"ef353fec-0965-4976-8d24-4ec4dd85f789\",\"trace_id\":\"d262e525-1497-4640-8c3d-2fe8181631bb\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:02:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4042cb95-11ea-4e3d-82c6-ca1c3414e1ef\",\"trace_id\":\"95f5a26c-63ae-4353-abea-d608b78020ce\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6f29620a-ba9a-441a-996c-f2331d861983\",\"trace_id\":\"823418b2-fd5d-4bc4-8568-48dd2e2327bb\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f6c7ae02-8ddb-4611-a609-c7f3a93f6c3e\",\"trace_id\":\"3174130e-28fc-4e1c-b1ac-149e10e4a653\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring start {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:12] local.NOTICE: Monitoring end {\"correlation_id\":\"bade213c-5956-4646-96c1-8dd816b49476\",\"trace_id\":\"0ba41618-99ce-4647-b961-dc518b73d902\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49810f50-f9fc-4b20-a256-4702ea70d8ac\",\"trace_id\":\"ebd87875-9fe5-4aa5-b89f-e3071a478883\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1463dfa1-a66a-4312-9f86-2ba45ffe35b4\",\"trace_id\":\"062cc4fd-9076-4d76-ba48-611b2d760f88\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:03:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"46023094-cf90-4c1f-adce-646bf4b083be\",\"trace_id\":\"d5c6867d-5d5c-4d8c-80dc-03e9f47a58ef\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5974f502-10ae-444a-ba07-a721cb6c41f8\",\"trace_id\":\"68e16be6-a04b-40cc-8e13-e2dc2d179379\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a87dfe40-fe1f-45ac-876c-f3e16faa7441\",\"trace_id\":\"4331a24e-4810-4df9-8fcb-2808db6fea89\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring start {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:08] local.NOTICE: Monitoring end {\"correlation_id\":\"73f956ed-5e50-458b-819a-fad7877ab40a\",\"trace_id\":\"c8c9a161-66db-45fb-a547-8389e408956f\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a42dd1fe-3c31-43d8-bb20-d85be40899d5\",\"trace_id\":\"fc913eb2-d9ee-4952-875a-66e076077c55\"}\n[2026-05-11 14:04:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:16] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8b6f963c-07d6-4e71-bbc9-3d32d99567be\",\"trace_id\":\"f12c20d2-5811-4f73-a38d-d25d1d699686\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:02:00, 2026-05-11 14:04:00] {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:04:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"19fbdd48-6091-4916-83c2-0ee1438b2de9\",\"trace_id\":\"5540344a-5e42-45ee-a1eb-4d638d18a6a9\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e9b207-3c9a-428f-b6c8-b05105058e17\",\"trace_id\":\"d621c35c-1443-4b21-b2ce-12568bc42d57\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fd484ac-592c-4399-8195-bd0033767058\",\"trace_id\":\"00eff6e0-6f24-4ec3-a2f7-69343fc4a664\"}\n[2026-05-11 14:05:09] local.NOTICE: Monitoring start {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:10] local.NOTICE: Monitoring end {\"correlation_id\":\"c3c40de4-13f0-4912-9e97-e8ba87f0a17f\",\"trace_id\":\"2fd0cf4b-5072-48bf-a46d-f12042b5d17b\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa1a046-75f5-4e35-a156-85ae1f1f61bd\",\"trace_id\":\"afc2e866-93fb-4edd-941b-29e332eddf75\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2232299f-c50d-4ddb-907c-a6fa433bf989\",\"trace_id\":\"3205a86f-8f8a-4118-9aec-c6c2e4d461f4\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"95e2e2ea-06c9-4c2f-bc57-9e6dd9d0157b\",\"trace_id\":\"0711af68-6eb2-4984-9808-be8a5aa19d43\"}\n[2026-05-11 14:05:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05526fdc-0c16-4b7d-b320-0a6c6ff360ac\",\"trace_id\":\"1ae6919a-4605-488c-a6fe-4e2328fbd708\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44dacb03-57a9-4c96-8c94-3fe7b8deba65\",\"trace_id\":\"75addce8-74c6-4be6-a86b-bdf89ab5ef13\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 13:55:00, 2026-05-11 14:00:00] {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6df27608-c564-4ab8-9cf7-e71295b91e5c\",\"trace_id\":\"ec9a2947-061c-437a-96ce-3892dc5c17e4\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:00\",\"to\":\"14:05\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"03:55\",\"to\":\"04:00\"} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c291c0cf-3254-44a6-95d5-ab980c4046a6\",\"trace_id\":\"94c7acd5-da64-482b-915e-12de2e398dcb\"}\n[2026-05-11 14:05:40] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:41] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] 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\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:42] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"1bcb9960-bb1a-4a09-9426-6884c3218f4a\",\"trace_id\":\"5cff45d0-9a12-409f-becb-4f311d447492\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:07:49.673965Z\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"34b71c51-e24f-483b-b64f-abac3bbe859a\",\"trace_id\":\"4c6b96d5-433d-4a6d-af01-bfd80cf7a165\"}\n[2026-05-11 14:05:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6761b1cb-f4a3-495e-b25a-f1912bed2d05\",\"trace_id\":\"a7fd7636-ec72-4412-8864-0db8209abcf2\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:05:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c938e43b-c0f2-4381-bdb3-b5eca8b9abd9\",\"trace_id\":\"63820619-8820-45b7-af38-72d42109c2bd\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"05d57e60-a358-4220-bcfc-2d3d59cc9ece\",\"trace_id\":\"eb79f633-a29a-4ecf-a073-e51974242bd5\"}\n[2026-05-11 14:06:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring start {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:16] local.NOTICE: Monitoring end {\"correlation_id\":\"cfaf6852-f728-4d7d-b509-35919937524e\",\"trace_id\":\"fce52d86-4347-4b6e-80fc-ba4c8c086b89\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80f2fefc-b6bc-4d44-a52e-49b00bee9e99\",\"trace_id\":\"d35ac644-0c52-42f8-9874-5ef521889cf3\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a561c304-54e2-480e-97a5-37280155f89b\",\"trace_id\":\"f95461fc-9025-413f-917f-abab950f32ff\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:04:00, 2026-05-11 14:06:00] {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1de5c9dd-7d3b-4d96-b7b2-3a619627921d\",\"trace_id\":\"0c295b5f-be29-4f9a-9b49-a28360363a7f\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54cca8dc-b78a-430c-8639-f046e73ac26c\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24568976,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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.33,\"average_seconds_per_request\":0.33} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":336.61} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":446.4,\"usage\":24652944,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"d7edbc12-e7c9-4d08-9021-d6a2910ab377\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24630872,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":20.17,\"usage\":24618880,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"976e3c33-7074-42f9-a23b-9b7db6306426\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24579632,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] 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\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:32] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":17.54,\"usage\":24641672,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3b7a9aff-0e4c-464e-bc1d-6cd91a9a8c02\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24599176,\"real_usage\":65011712,\"pid\":74083} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:33] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":56.97,\"usage\":24615296,\"real_usage\":65011712,\"pid\":74083,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"6448dd2d-9fac-43a2-80bd-fd6e3e851727\",\"trace_id\":\"4f4a80c5-0b4f-49fb-9fee-6ac658caccf5\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2fc05ec7-12fe-40ae-ae59-53195e35ac7c\",\"trace_id\":\"9781c3f4-6505-49f0-abbb-e4d517cd5e8e\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed4b67e8-15bf-449d-b397-6635e160aac4\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"81fd51b9-9e64-4458-abb1-0db4a93eb9c9\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 212 due to unauthorized access to the mailbox {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:42] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"ddf27e80-e57a-4dbc-b632-9e79b6ec1d49\",\"trace_id\":\"ba6ff1a4-9e53-4d3e-90b0-b4e6185b384d\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] 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\":257.1,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:06:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"137ed2ba-8093-4094-9ab1-3875548d0c7d\",\"trace_id\":\"8d60d6a7-e228-42e8-9fca-80dd10fae30a\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5e1cb5d6-0c08-401d-bf65-1320d6ce5756\",\"trace_id\":\"50284fa2-a2d9-4aad-802e-1bbec356d388\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f1cec42-d9dd-40d8-a8a8-c884a3842c6b\",\"trace_id\":\"dc501143-638b-4362-8a9c-5aa41ad09899\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring start {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:14] local.NOTICE: Monitoring end {\"correlation_id\":\"09a06090-15da-48ac-a994-19c63a7ee25b\",\"trace_id\":\"58d06f2c-8390-4645-8eda-82cf28995523\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"81c6e5ef-1729-4d62-b4ab-7c9fd7f1a4ce\",\"trace_id\":\"078fb6fe-b842-4163-9cbb-01d6d2b0b7fe\"}\n[2026-05-11 14:07:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e786aeac-c065-43ff-b8f8-529512d30784\",\"trace_id\":\"78329465-dbf4-4a22-9488-c8bd9e289990\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"44ee8776-6719-427a-b6fb-3e492bda6f8a\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:27] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"53ae4eb1-199f-410c-9753-9177f2c34f79\",\"trace_id\":\"664bce14-3b2b-474c-b57d-78ebe5b8bf80\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:07:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4f814b8f-7691-4df8-8997-125a5630009b\",\"trace_id\":\"f39365e5-396c-40fa-b0de-76d3e1552af2\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1245428c-a1b7-42f3-b182-09879fab2980\",\"trace_id\":\"1e625133-f375-4b5c-a5b4-0c666ad5be57\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e0a3b0af-0833-46e0-a7bf-bcb350634762\",\"trace_id\":\"aa68bc47-db59-409c-8b48-febc1b7e5bbe\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring start {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:12] local.NOTICE: Monitoring end {\"correlation_id\":\"5d46e861-21c6-4603-8a23-160aebe06d95\",\"trace_id\":\"d922af50-d6e0-4d5f-adcb-0db60e550176\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cfbe7a1d-349c-40d0-a0dc-902efb8c690c\",\"trace_id\":\"8f56686f-a56a-4714-a4f9-c0b6e02f1d5e\"}\n[2026-05-11 14:08:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b90812bf-7261-418e-a17e-612b0b2c07d4\",\"trace_id\":\"eb2060bd-7f16-41ea-b7b5-0d4b6667b2c0\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:08:00] {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"443464cc-5b3e-4f49-9407-e45b3c10cb27\",\"trace_id\":\"d0e80ac5-95ba-455e-bc58-76e312b662c3\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:08:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"67ca36e2-d881-44df-a3c9-104c84752334\",\"trace_id\":\"c7796eb2-e5a2-4806-bc9b-17981a476f07\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d8aaa8db-344a-421c-94eb-0781b5c5f78e\",\"trace_id\":\"674959f7-ea20-40a6-ac0b-ae4ac9c49806\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a869810-9a20-471c-b311-03dfc9c95922\",\"trace_id\":\"f08d3320-2da0-4296-9106-7738e1aabbed\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring start {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:09] local.NOTICE: Monitoring end {\"correlation_id\":\"cac60c4d-71c6-4e60-9926-3b331b85ea6d\",\"trace_id\":\"bb6dc948-76a2-44bb-a376-66ae7889118a\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e200c64f-4aa9-443f-ac48-49ceb6d3fd77\",\"trace_id\":\"9e2ee97a-4376-4e00-98d1-29637a8578d3\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1f34b0f1-5ef4-4cbe-bcf7-e7100855c2ff\",\"trace_id\":\"9e93e514-04af-4df7-9f0f-121f3f95af42\"}\n[2026-05-11 14:09:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"698d91e1-0e80-4660-835e-95b6de9fce9a\",\"trace_id\":\"c759cfe3-e344-457c-911c-ff8d046012ee\"}\n[2026-05-11 14:09:22] 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\":\"63da2d17-dce5-4dcd-ae87-9c5308169544\",\"trace_id\":\"d758d390-ca0f-47bc-8833-0daa371f13e8\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0dcd2795-3a8e-41ec-9fa9-4536f3e3eb4e\",\"trace_id\":\"6f4d5967-344b-49fa-ae18-cee8b1023955\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2a9fc91-c1ee-421c-aece-41fc2e31ddc9\",\"trace_id\":\"2a0ed91e-c302-4816-9025-e7745c26fbb7\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring start {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:11] local.NOTICE: Monitoring end {\"correlation_id\":\"45c6d93f-e5ca-4985-a756-6563b82b7cd7\",\"trace_id\":\"7480c202-537d-490a-b09a-9d71901639fc\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7445e94b-5df4-4b08-b10a-ca82528ea7ea\",\"trace_id\":\"bd4235aa-798d-49d7-ae68-aa8b502cad32\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3990f725-ab28-46cf-b84e-f364487ed99d\",\"trace_id\":\"dfd606f0-f75e-469d-ac4d-473adcd162c9\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:08:00, 2026-05-11 14:10:00] {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8db91b23-0b96-41f2-884d-4e84566000c2\",\"trace_id\":\"99603fdb-8e3b-4aca-9ea7-dbd21e3bcfb8\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"741714ad-21a6-4088-80f8-127000ada0cd\",\"trace_id\":\"7e84d6f7-5e32-4a39-ad4c-08586db3d469\"}\n[2026-05-11 14:10:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1e7eb96c-d582-4be1-9326-5a5072e58527\",\"trace_id\":\"cb57e046-3bfd-4ae4-a27e-63060e397788\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"36db15ec-0318-46a2-9efe-b2c6463a5104\",\"trace_id\":\"769ca529-6e67-4d5a-b93c-87e7e0aabaaa\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:00:00, 2026-05-11 14:05:00] {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:10:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"53d53be0-c27f-4a7d-8015-d7b2743d169c\",\"trace_id\":\"af18988b-dff0-415a-9574-cf6f004a609b\"}\n[2026-05-11 14:11:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:06] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:06\",\"to\":\"14:11\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:01\",\"to\":\"04:06\"} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7db1044d-0f89-464a-8d94-82f93c07511f\",\"trace_id\":\"39246e23-d515-435a-bfea-2ca2c98d7947\"}\n[2026-05-11 14:11:16] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] 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\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:17] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"f5a992a9-1e92-47e6-bed6-dce947c1c399\",\"trace_id\":\"65cd10c1-e6ab-42b5-a2f9-f23c2c9064d9\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:13:30.125436Z\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"617ac359-e827-457b-84f4-4f59cc75084e\",\"trace_id\":\"b2107511-8532-4689-924f-e937fe6961f1\"}\n[2026-05-11 14:11:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed9ae198-d846-4e07-a3b7-f51f83a236b2\",\"trace_id\":\"d1c4cd47-d25f-4956-a565-a29d9ee2a189\"}\n[2026-05-11 14:11:30] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:35] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ea7e0bc7-2b21-405f-91cc-5b7f93c7ac2c\",\"trace_id\":\"673a574f-ffd1-4b0e-b489-500147ec7aca\"}\n[2026-05-11 14:11:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4abf66a6-894a-4270-babd-f297285d5f99\",\"trace_id\":\"a4c4cfbc-6c10-482d-abf6-6aa3566fb20a\"}\n[2026-05-11 14:11:56] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0e91b519-afe4-4fcb-90d3-9c02d813f1b2\",\"trace_id\":\"ffb83088-87d9-43d9-8b0e-9c681c900acf\"}\n[2026-05-11 14:12:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5d2480c8-d317-4123-ac1d-768ac3061c68\",\"trace_id\":\"7704c5fe-de90-4dbd-98cc-b2266b47324e\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring start {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:18] local.NOTICE: Monitoring end {\"correlation_id\":\"ea2c757b-1489-48d4-8c94-9b171db18a92\",\"trace_id\":\"2f81081a-3db8-4322-8c4c-e8e59af68a41\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"49fc48c5-c26d-41f6-8beb-d465f1f869f0\",\"trace_id\":\"1caf7cb6-b261-4429-a79e-059164962536\"}\n[2026-05-11 14:12:26] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:26] 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\":270.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:27] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"34b4d806-65aa-4e6a-b829-94ba793e0c3f\",\"trace_id\":\"62d58b10-1e3f-4cf0-aecb-d44b713687f0\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f8d5f804-f24f-4dc3-9d80-1017ea1316e0\",\"trace_id\":\"bdffa402-a8d8-4ef5-8884-944ede00fa3c\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:10:00, 2026-05-11 14:12:00] {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fc8a2118-70f4-4ead-80fb-dd0a0d012d2c\",\"trace_id\":\"29ac95c6-e2ca-4cfb-97a4-14a7ef9dd651\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:12:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c57e8aaf-891e-4142-8d87-f13e7a088bd2\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:00] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"8d8a7fa9-63e6-4b2b-8711-a3a245bdceda\",\"trace_id\":\"f7d8718b-7858-4d0f-8a43-96dd3ad4c2bc\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0c50af3c-bf95-43a6-bf77-5002c85fd32f\",\"trace_id\":\"d0edef87-393a-4726-8bbb-8fddde271dd5\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e8703814-9b7c-40af-8a89-96ef1eb74b07\",\"trace_id\":\"ca754ecb-ccee-4ae5-bd83-605eacf61528\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring start {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:24] local.NOTICE: Monitoring end {\"correlation_id\":\"fa0ac783-d334-4786-97b5-273642e1efb6\",\"trace_id\":\"c992623c-a723-4417-835c-dc6c31000b97\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4099b34b-5124-49c0-805d-41602d397d16\",\"trace_id\":\"98834294-5255-4804-a3f2-4b4e8ca576a1\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3e347471-14c6-4376-a3c2-10adcd77742e\",\"trace_id\":\"384272e9-01a2-4ca0-99f4-1dfbcaadf74b\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.NOTICE: Calendar sync start {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"eca23a97-a187-4342-ba70-001cae98bfe0\",\"trace_id\":\"99a1cb9f-faa6-41b0-9943-0926427b394d\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:53] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] 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: 70f98f4f-9998-4a2d-ad5a-94dfc47e0400 Correlation ID: 4d87738f-1b5e-4311-8212-3b63d9855326 Timestamp: 2026-05-11 14:13:54Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:54Z\\\",\\\"trace_id\\\":\\\"70f98f4f-9998-4a2d-ad5a-94dfc47e0400\\\",\\\"correlation_id\\\":\\\"4d87738f-1b5e-4311-8212-3b63d9855326\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:54] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] 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: a7881793-bafc-4120-9891-35f449500500 Correlation ID: efb4d9cf-ed6f-483e-8fcd-976dc6e2e715 Timestamp: 2026-05-11 14:13:55Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:55Z\\\",\\\"trace_id\\\":\\\"a7881793-bafc-4120-9891-35f449500500\\\",\\\"correlation_id\\\":\\\"efb4d9cf-ed6f-483e-8fcd-976dc6e2e715\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:55] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:56] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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\":\"a812e783-3a97-43b9-a026-b3c1b7256142\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] 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: d629ca21-3ca7-44b5-9e49-1c8ffdd31e00 Correlation ID: daa6342b-7437-454b-8cce-741f04593eab Timestamp: 2026-05-11 14:13:57Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:57Z\\\",\\\"trace_id\\\":\\\"d629ca21-3ca7-44b5-9e49-1c8ffdd31e00\\\",\\\"correlation_id\\\":\\\"daa6342b-7437-454b-8cce-741f04593eab\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:57] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] 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: af9a0812-673a-48da-aad7-f826fb642300 Correlation ID: 388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f Timestamp: 2026-05-11 14:13:58Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:58Z\\\",\\\"trace_id\\\":\\\"af9a0812-673a-48da-aad7-f826fb642300\\\",\\\"correlation_id\\\":\\\"388fd061-64d0-4ec8-9fd7-d4cfed3dcd0f\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:58] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] 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: c3f625b4-a217-4c7e-8027-b2f90a322100 Correlation ID: ee3468dc-5611-4d18-9c5c-bcaeb95c105d Timestamp: 2026-05-11 14:13:59Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-11 14:13:59Z\\\",\\\"trace_id\\\":\\\"c3f625b4-a217-4c7e-8027-b2f90a322100\\\",\\\"correlation_id\\\":\\\"ee3468dc-5611-4d18-9c5c-bcaeb95c105d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:13:59] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:00] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"be8486e4-e3a5-4d66-baeb-ccd8ff522532\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":1775683749,\"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-04-08 22:58:34\"}}} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] 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\":\"686d7fa2-4cd4-49c0-be0d-10e5fc2316d2\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLlvcOB4kXlhlC7KgH1SnZwTrZ3faZv1fXPQqJhxe_L9AxWWlb-wASsjGiiWlhsBUg9MFb3ZdlAYerVV_ZirRPbsKWCxEXhybD90arJmok_M4ecGFUQ9_BIGu-c6RAnJy2TRKZ7gPTsJi_8TGceGAuqimlhm4G4mjDLvYVVwImjjU7M3xJvUzL47dLOGNTJCww.k1TST0VEYCgbFOkwa3ysYMi100FtVfkzfqlXLnV6gPg\",\"last_sync\":\"2026-05-11 06:13:36\",\"dateMode\":\"daily\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:14:02] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"f46614f4-42b1-4f47-a04d-c5090551b947\",\"trace_id\":\"eca2c3cd-0abf-45d2-be9f-782cdd7b81b1\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a0aa3e15-fa42-4910-a7d3-af6b7eb7a79e\",\"trace_id\":\"ef57926b-5f01-4b53-bcbc-b3bf64356a36\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"0fa7e51e-80d7-4151-8e46-e01c6aff22da\",\"trace_id\":\"3a54c31a-7843-445f-87eb-7af3764578d1\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring start {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:25] local.NOTICE: Monitoring end {\"correlation_id\":\"4b734a75-0509-4b0a-966b-d162834daab0\",\"trace_id\":\"bdb05998-69fb-4797-b361-04349e9b1d15\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"7ef99270-5945-42a0-ac94-5d0963c80564\",\"trace_id\":\"7f7e9589-5e6f-4467-b5a0-f7596a9634d1\"}\n[2026-05-11 14:15:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:41] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"918f4421-146f-4a4b-91bf-e160542caa77\",\"trace_id\":\"73e1a037-ce16-49ea-a07f-f0193506d4db\"}\n[2026-05-11 14:15:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c480e433-76ce-4658-a55e-8007d743a120\",\"trace_id\":\"d77371d3-f5fe-403c-b354-51f070394085\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"db6a8b60-3fa1-4d95-bff1-bb3c0de997b4\",\"trace_id\":\"1c205e86-642d-4815-bde0-bec6a2e9e6a7\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:15:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"176a1adc-a9bd-4e96-9d85-36b6fd8eba1e\",\"trace_id\":\"1df1a11d-ba58-44f7-af9d-a3eaaf9fb806\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:06:00, 2026-05-11 14:11:00] {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"641bcec8-0b71-42c8-b86b-856742509cea\",\"trace_id\":\"e2f03794-3efd-4df4-8397-d97cbbd9833a\"}\n[2026-05-11 14:16:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:11\",\"to\":\"14:16\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:06\",\"to\":\"04:11\"} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3b54778a-4b43-45c1-b103-895e8e0aee20\",\"trace_id\":\"60f95c0a-2922-477a-9324-45bdb61928ea\"}\n[2026-05-11 14:16:33] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:34] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:35] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] 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\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:36] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"289dbb6b-4a59-46c9-be8a-98f936dacaea\",\"trace_id\":\"d35f91d1-2676-4eb3-8e7f-2e40528f2499\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:18:53.903625Z\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8ae448d5-ac4b-4b26-91d7-c77108a0db88\",\"trace_id\":\"4d314811-b568-455b-b698-6fe617be8739\"}\n[2026-05-11 14:16:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812776,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812777,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812778,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812779,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812780,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Dispatching activity sync job {\"import_id\":812781,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2dde2390-bd93-4dea-95e1-14206d63df1b\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:16:59] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.ALERT: [SyncActivity] Failed {\"import_id\":812776,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":646} {\"correlation_id\":\"49d606a1-396e-47bb-bdf9-949701b6d42f\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:00] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812777,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"e2a2b068-cd0a-49cc-b5db-26e0b4b16441\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.ALERT: [SyncActivity] Failed {\"import_id\":812778,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"563781e8-aeb6-4f5b-b2d3-ecdb87e6c872\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:01] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.ALERT: [SyncActivity] Failed {\"import_id\":812779,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"6e81e2fa-f37e-41f5-9972-6147f011ff32\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:02] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.ALERT: [SyncActivity] Failed {\"import_id\":812780,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"8221e7ad-8a85-4637-a999-5a1a8fea9c23\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Start {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-05-11 13:59:00\",\"to\":\"2026-05-11 14:15:00\"} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] End {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: [SyncActivity] Memory usage {\"import_id\":812781,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":29183792,\"memory_real_usage\":67108864,\"pid\":74086} {\"correlation_id\":\"654115f7-fb79-42e4-bfee-baeec6c2959e\",\"trace_id\":\"5dec6ffb-9ace-47ee-bde4-8227efb5f575\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4613ef87-33c3-4c63-86d6-439f5fa5f5b9\",\"trace_id\":\"0607e3e9-e56c-41e9-ba8f-abf3f6f285fa\"}\n[2026-05-11 14:17:04] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f1b2c330-d699-4547-985d-50d353a6c275\",\"trace_id\":\"7b0f50a2-b017-4690-8ea8-8919d59e146a\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"9855bd5c-a85d-4899-a77f-dbeb36de51b2\",\"trace_id\":\"04f3754f-a3a3-43e8-b515-e1f07df04785\"}\n[2026-05-11 14:17:20] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] 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\":280.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:17:50] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"88d5e989-5288-4aea-ad09-374344666396\",\"trace_id\":\"e79668b6-b831-47ca-9ef4-eed544d2775c\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"8afce451-387e-4787-8c81-82a51fa43261\",\"trace_id\":\"fa10c079-ba1d-46e7-9ff8-0dbcaa15a7bc\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"463559b3-4427-4125-a954-e5b9ee3017d7\",\"trace_id\":\"b9137859-280d-455b-9527-b6f2b38f7cf3\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring start {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:19] local.NOTICE: Monitoring end {\"correlation_id\":\"a37f02ea-1089-42f1-a241-542fc4a46c40\",\"trace_id\":\"d3ee891e-1cad-4d34-addb-0eb7081bb1f4\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"2ecdb36d-3fae-4fb3-97b6-756774104d6a\",\"trace_id\":\"71df1ee1-548b-4033-8e6e-8808bad594b6\"}\n[2026-05-11 14:18:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"88252d3c-025c-42a8-8c27-5401fb79bd66\",\"trace_id\":\"b4f7f89d-0656-4bb0-9a83-a02a2085a711\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:16:00, 2026-05-11 14:18:00] {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"77839bb6-30f7-4911-b818-f3a92e9ea85f\",\"trace_id\":\"4269baa1-f2d4-40d9-b6e3-72ef7dd85fbb\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:18:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4c4de451-2906-4a20-a4b2-9e8d41485ff4\",\"trace_id\":\"53c04a44-0446-4d2b-aaa0-92a613427046\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"17e4824c-8846-4e79-b9a5-6d4cb28aaec2\",\"trace_id\":\"efb3a632-39fd-459b-8e90-9f59d8e21c5d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6a07294d-593a-4184-9fae-70146d981839\",\"trace_id\":\"394e7913-3f93-43de-a33f-28ab612d945d\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring start {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:15] local.NOTICE: Monitoring end {\"correlation_id\":\"26a7b94a-2bc5-4769-a9f8-2abb658d1555\",\"trace_id\":\"ffd6d597-e959-4066-9b0a-663d9a048cd8\"}\n[2026-05-11 14:19:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"80412eb9-e4f0-4768-ae40-5995bce3ef62\",\"trace_id\":\"7089a8fa-2529-4296-b93e-42f997ab12a6\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:19:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f531245b-071e-4bdd-b248-6692763b09c9\",\"trace_id\":\"72fbb128-07ab-42d6-b7bc-039e9ad05137\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"59a0fa98-80cf-4da7-baad-ea0e8d3a06a9\",\"trace_id\":\"b23acd53-da1a-49de-851c-f3d2e3815134\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"20fffca7-e2cb-418b-956d-17b354d05594\",\"trace_id\":\"bc3797d0-8745-4a37-a498-6ae763162bbc\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring start {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:21] local.NOTICE: Monitoring end {\"correlation_id\":\"448921cd-5d5b-470e-819a-10912a747df4\",\"trace_id\":\"43f57163-9237-4300-981a-784738cf6736\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"37bb55d7-10e1-41db-b941-2fe31213996c\",\"trace_id\":\"68c3c98f-2d71-4e1c-8157-114172d26d53\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"fb6f47a5-8342-4bc8-893a-8d32940d7c70\",\"trace_id\":\"677bbdcd-eb8c-4e25-a18b-989ed0afeb51\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:18:00, 2026-05-11 14:20:00] {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5134b170-b7d8-47b7-8ad3-303d9b805808\",\"trace_id\":\"e0cf0a25-c853-471e-9fb7-96f8d45b988c\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e94e4683-cbdb-4d5d-b4fa-416b850e8bf6\",\"trace_id\":\"9846ddee-b7cd-4dc4-865f-bc04fe4c613f\"}\n[2026-05-11 14:20:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:20:55] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5c92f72b-f4db-4768-98e6-0641b285d862\",\"trace_id\":\"de414350-ce0e-4826-b6b4-d7b23cc632db\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"54ff5a5d-b1c3-4372-afb5-e2f7c3123dc6\",\"trace_id\":\"153e99fc-00f1-4536-ae7d-648dcd636bd9\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Running conference:monitor:start command for activities in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: [conference:monitor:start] No activities found in (2026-05-11 14:11:00, 2026-05-11 14:16:00] {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"a262b136-3233-407d-af38-204991039e43\",\"trace_id\":\"103364f7-fd5c-4290-b462-ce1b5f043ec6\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"14:16\",\"to\":\"14:21\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"04:11\",\"to\":\"04:16\"} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"68e03b67-0780-4b0d-a989-91d093c80115\",\"trace_id\":\"35af0ea0-15fb-4691-8d66-db04dfdbcd80\"}\n[2026-05-11 14:21:20] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] 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\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:21] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"0592ed65-c66a-4e96-bfef-ff0abfe0b1a7\",\"trace_id\":\"69a31bf2-7e9b-4c75-aa43-58a588955cec\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-11T14:23:32.378841Z\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e95cc06e-566d-4072-be49-ad0abf402f0c\",\"trace_id\":\"b23e42ed-181f-4466-8c18-22053bb74830\"}\n[2026-05-11 14:21:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"b556b745-7e76-4ad0-b614-742118930b12\",\"trace_id\":\"47fc6143-6dde-4d76-9b23-23a1c097e0e6\"}\n[2026-05-11 14:21:32] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:37] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"c4c9c3a0-5c39-4750-9cff-682175d9700a\",\"trace_id\":\"c475d8a8-922e-4529-a8e4-d4305758915a\"}\n[2026-05-11 14:21:43] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83dd109b-b4bc-48d7-9414-e98ac90e5974\",\"trace_id\":\"10362081-24c4-4c8d-bbc5-912362932bff\"}\n[2026-05-11 14:21:58] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"60b3639c-0f2c-4df5-a4a9-b6b2b389d1c6\",\"trace_id\":\"f8a268c2-18a1-4415-9fa3-acd9818204d6\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"5a77fb7e-1cd5-47ff-9b6c-dd32504e6b94\",\"trace_id\":\"acc85cec-23f1-4701-90da-b6d4728a4074\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] 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\":223.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.73} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Saved offset to database on cleanup {\"offset\":\"019e15a9-9ea0-7da7-87bc-82592e3ccf0d\"} {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:29] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"f297071e-9e77-4753-9ffc-16a17f3fb90e\",\"trace_id\":\"17b80f4d-6673-440d-bbce-709a420cef5d\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring start {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:32] local.NOTICE: Monitoring end {\"correlation_id\":\"577d8703-2f55-4a01-8a71-e996b8d42e72\",\"trace_id\":\"427ddb3f-9ec4-42b8-8286-53d8a6ebeea3\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"4e3f374f-d11b-4f2a-9bd4-826b4ecd14ef\",\"trace_id\":\"cf45f33b-5e6d-4f8d-a167-bb4ecc464ea4\"}\n[2026-05-11 14:22:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:22:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"83bcd4f9-59bb-4099-809a-c00c848f1a0c\",\"trace_id\":\"016ab60a-3cad-4788-b44c-8a1d726eb742\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:21:00, 2026-05-11 14:23:00] {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"1cca8e39-d433-4481-bd98-98cceebb9731\",\"trace_id\":\"26c69e5f-433d-49c1-9edc-04f9363f1a5a\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"d0aa28dc-409a-4b5e-84d6-05770b41324d\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:08] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 2 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"902d78a8-be4c-4e27-9862-a462476468fd\",\"trace_id\":\"3c330ff5-62a5-4187-b275-a2905a1b624d\"}\n[2026-05-11 14:23:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"e2e43f62-bbca-4830-bb24-c0028657e772\",\"trace_id\":\"ed392a89-f69d-45c2-a0e3-a631029fd22d\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"twilio:recover-tracks\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"f9f67162-e04b-490c-8a9a-3b1b2e13f291\",\"trace_id\":\"efe9d160-c8ce-495c-a8ce-4f70d79b8f19\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"connect-and-sell\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Start user synchronisation {\"provider\":\"justcall\",\"teams_count\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Synchronising team {\"provider\":\"justcall\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf9285a-8ded-4a8b-bd7d-ec68c398f2f9\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1367,\"sociable_id\":1071,\"provider_user_id\":\"005O4000003s5c7IAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-10 07:05:21\",\"updated_at\":\"2026-01-14 07:00:58\"}}} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":1071,\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.WARNING: Failed to sync external users {\"message\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\",\"provider\":\"justcall\",\"team_id\":1,\"team\":\"jiminny\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"ringcentral\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"avaya\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"telus\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"salesloft\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"talkdesk\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Skip provider synchronisation, no teams found {\"provider\":\"vonage\"} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Done {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:23:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:sync-users\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"cccf5259-8810-4003-8ce5-799ab8982c77\",\"trace_id\":\"67bb3d4e-b3e6-4b92-a7de-11cdeca807c9\"}\n[2026-05-11 14:24:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"ed490410-2145-4a33-a903-5e514aa52ec4\",\"trace_id\":\"75e4d105-068b-4e3b-bd63-f0cf244f54cf\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"df0a1dbf-e833-4959-a7f4-3839f00f9bc9\",\"trace_id\":\"2f5122c6-920f-415c-a9cd-91e155a70e60\"}\n[2026-05-11 14:24:34] local.NOTICE: Monitoring start {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:35] local.NOTICE: Monitoring end {\"correlation_id\":\"39ef745f-d61d-4ac9-9d42-525f64b65dd4\",\"trace_id\":\"625761ab-30d1-4dfe-97b0-7cc1f37b6d09\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"14d51187-aa8f-4e5e-ae5a-347eab4e576d\",\"trace_id\":\"5e4e0216-d503-43ec-b179-fa091514f928\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"3a55ba7b-d417-4d99-bb5f-0e3ce4d7c764\",\"trace_id\":\"4f625f23-946d-4870-ac4b-ce049cf76800\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Running conference:monitor:count command for activities in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: [conference:monitor:count] No activities found in (2026-05-11 14:22:00, 2026-05-11 14:24:00] {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:24:58] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"651854ef-ff19-48b4-939b-90ca8a622709\",\"trace_id\":\"cddd2d20-c0df-40d2-9206-59b81fa67de6\"}\n[2026-05-11 14:25:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.727,\"memoryPeakAfterCommandInMB\":99.727} {\"correlation_id\":\"6858ca9c-5cb9-4b06-9dd0-a01a1077b899\",\"trace_id\":\"39787089-0bd4-4a47-9fdb-fb4ac7c32a74\"}\n[2026-05-11 14:25: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\":\"c1ce205b-4ca9-46b0-8b6c-645849bb5ab7\",\"trace_id\":\"22ea08de-2b15-494c-accf-4bab1836b0ac\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":1,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] Switching CRM configuration {\"activity\":1,\"old_configuration\":10,\"new_configuration\":5} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:19] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":1,\"remote_search\":false} {\"correlation_id\":\"44d7390a-cd94-4321-a816-d107c7eb75d9\",\"trace_id\":\"a60cf7ed-e549-40ac-939e-0ee7fb230a5a\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":5,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":false} {\"correlation_id\":\"e8ad7115-acb4-40f8-a5e1-9838fe856fb1\",\"trace_id\":\"7d8d9aba-56b2-43a4-b80c-b94237cac6da\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Failed to match CRM data {\"activity\":1,\"remote_search\":false,\"exception\":\"Test exception\",\"trace\":\"#0 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(1667): Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest->testTransactionRollbackOnException()\n#1 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(519): PHPUnit\\\\Framework\\\\TestCase->runTest()\n#2 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php(87): PHPUnit\\\\Framework\\\\TestCase->runBare()\n#3 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestCase.php(365): PHPUnit\\\\Framework\\\\TestRunner->run(Object(Tests\\\\Unit\\\\Jobs\\\\Crm\\\\MatchActivityCrmDataTest))\n#4 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestCase->run()\n#5 /home/jiminny/vendor/phpunit/phpunit/src/Framework/TestSuite.php(369): PHPUnit\\\\Framework\\\\TestSuite->run()\n#6 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/TestRunner.php(64): PHPUnit\\\\Framework\\\\TestSuite->run()\n#7 /home/jiminny/vendor/phpunit/phpunit/src/TextUI/Application.php(211): PHPUnit\\\\TextUI\\\\TestRunner->run(Object(PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration), Object(PHPUnit\\\\Runner\\\\ResultCache\\\\DefaultResultCache), Object(PHPUnit\\\\Framework\\\\TestSuite))\n#8 /home/jiminny/vendor/phpunit/phpunit/phpunit(104): PHPUnit\\\\TextUI\\\\Application->run(Array)\n#9 /home/jiminny/vendor/bin/phpunit(122): include('/home/jiminny/v...')\n#10 {main}\"} {\"correlation_id\":\"eb943195-2039-477b-833d-e32b19045440\",\"trace_id\":\"47cb265a-7c67-4c89-9cc2-83fee82c2678\"}\n[2026-05-11 14:25:20] testing.ERROR: [MatchActivityCrmData] Job permanently failed after all retries {\"activity\":123,\"remote_search\":true,\"from_configuration\":null,\"exception\":\"Test failure\",\"attempts\":1} {\"correlation_id\":\"b9ed3e6a-f2dd-4fbb-94f2-dffa408951e3\",\"trace_id\":\"3e30b53b-0c97-4bc2-a626-85e7911c743f\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":123,\"remote_search\":false,\"lead_id\":456,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null} {\"correlation_id\":\"409022f6-82f0-44cf-81c5-efee3276a79f\",\"trace_id\":\"bfe9da60-6f7d-42d3-aabd-870cf72c7c65\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":123,\"remote_search\":true,\"set_configuration\":null,\"old_state\":{\"lead_id\":null,\"contact_id\":null,\"account_id\":null,\"opportunity_id\":null,\"stage_id\":null}} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] No CRM match found {\"activity\":123,\"remote_search\":true} {\"correlation_id\":\"0bef2646-a361-4ab7-b6b3-dfd844421e1d\",\"trace_id\":\"1c852296-08f9-4c72-ab22-4b65b37cd4b2\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Starting CRM data matching {\"activity\":999,\"remote_search\":false,\"set_configuration\":null,\"old_state\":{\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555}} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Participants old state {\"activity\":999,\"participants\":[{\"id\":10,\"user_id\":100,\"contact_id\":200,\"lead_id\":null},{\"id\":20,\"user_id\":null,\"contact_id\":null,\"lead_id\":300}]} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}\n[2026-05-11 14:25:21] testing.INFO: [MatchActivityCrmData] Successfully matched CRM data {\"activity\":999,\"remote_search\":false,\"lead_id\":111,\"contact_id\":222,\"account_id\":333,\"opportunity_id\":444,\"stage_id\":555} {\"correlation_id\":\"cf14be35-87fa-4bc5-a8ec-7b52f929b21d\",\"trace_id\":\"b7396e68-19aa-467d-8e24-cf60f4b8c71c\"}","role_description":"text entry area","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,"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}]...
|
-9158251449297157277
|
4446428687123393012
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
ClientTest
Rerun 'PHPUnit: ClientTest'
Debug 'ClientTest'
Stop 'ClientTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
17
136
11
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Tests\Unit\Services\Crm\Hubspot;
use GuzzleHttp\Psr7\Response;
use HubSpot\Client\Crm\Associations\Api\BatchApi;
use HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId;
use HubSpot\Client\Crm\Associations\Model\BatchResponsePublicAssociationMulti;
use HubSpot\Client\Crm\Associations\Model\PublicObjectId;
use HubSpot\Client\Crm\Companies\ApiException as CompanyApiException;
use HubSpot\Client\Crm\Contacts\ApiException as ContactApiException;
use HubSpot\Client\Crm\Deals\Api\BasicApi as DealsBasicApi;
use HubSpot\Client\Crm\Deals\ApiException as DealApiException;
use HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations as DealWithAssociations;
use HubSpot\Client\Crm\Pipelines\Api\PipelinesApi;
use HubSpot\Client\Crm\Pipelines\Model\CollectionResponsePipeline;
use HubSpot\Client\Crm\Pipelines\Model\Error;
use HubSpot\Client\Crm\Pipelines\Model\Pipeline;
use HubSpot\Client\Crm\Pipelines\Model\PipelineStage;
use HubSpot\Client\Crm\Properties\Api\CoreApi;
use HubSpot\Client\Crm\Properties\Model\Property;
use HubSpot\Discovery as HubSpotDiscovery;
use HubSpot\Discovery\Crm\Deals\Discovery as DealsDiscovery;
use Jiminny\Exceptions\RateLimitException;
use Jiminny\Models\Crm\Configuration;
use Jiminny\Models\Crm\Field;
use Jiminny\Models\SocialAccount;
use Jiminny\Services\Crm\Hubspot\Client;
use Jiminny\Services\Crm\Hubspot\HubspotTokenManager;
use Jiminny\Services\Crm\Hubspot\Pagination\HubspotPaginationService;
use Jiminny\Services\SocialAccountService;
use League\OAuth2\Client\Token\AccessToken;
use Mockery;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use SevenShores\Hubspot\Endpoints\Engagements;
use SevenShores\Hubspot\Exceptions\BadRequest;
use SevenShores\Hubspot\Factory;
use SevenShores\Hubspot\Http\Client as HubspotClient;
use SevenShores\Hubspot\Http\Response as HubspotResponse;
/**
* @runTestsInSeparateProcesses
*
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
private const string RESPONSE_TYPE_STAGE_FIELD = 'stage';
private const string RESPONSE_TYPE_PIPELINE_FIELD = 'pipeline';
private const string RESPONSE_TYPE_REGULAR_FIELD = 'regular';
/**
* @var Client&MockObject
*/
private Client $client;
private Configuration $config;
/**
* @var SocialAccountService&MockObject
*/
private SocialAccountService $socialAccountServiceMock;
/**
* @var HubspotPaginationService&MockObject
*/
private HubspotPaginationService $paginationServiceMock;
/**
* @var HubspotTokenManager&MockObject
*/
private HubspotTokenManager $tokenManagerMock;
/**
* @var CoreApi&MockObject
*/
private CoreApi $coreApiMock;
/**
* @var PipelinesApi&MockObject
*/
private PipelinesApi $pipelinesApiMock;
/**
* @var BatchApi&MockObject
*/
private BatchApi $associationsBatchApiMock;
/**
* @var DealsBasicApi&MockObject
*/
private DealsBasicApi $dealsBasicApiMock;
/**
* @var Engagements&MockObject
*/
private $engagementsMock;
/**
* @var HubspotClient&MockObject
*/
private HubspotClient $hubspotClientMock;
protected function setUp(): void
{
// Create mocks for dependencies
$this->socialAccountServiceMock = $this->createMock(SocialAccountService::class);
$this->paginationServiceMock = $this->createMock(HubspotPaginationService::class);
$this->tokenManagerMock = $this->createMock(HubspotTokenManager::class);
// Create a real Client instance with mocked dependencies
// Create a partial mock only for the methods we need to mock
$client = $this->createPartialMock(Client::class, ['getInstance', 'getNewInstance', 'makeRequest']);
$client->setLogger(new NullLogger());
// Inject the real dependencies using reflection
$reflection = new \ReflectionClass(Client::class);
$accountServiceProperty = $reflection->getProperty('accountService');
$accountServiceProperty->setAccessible(true);
$accountServiceProperty->setValue($client, $this->socialAccountServiceMock);
$paginationServiceProperty = $reflection->getProperty('paginationService');
$paginationServiceProperty->setAccessible(true);
$paginationServiceProperty->setValue($client, $this->paginationServiceMock);
$tokenManagerProperty = $reflection->getProperty('tokenManager');
$tokenManagerProperty->setAccessible(true);
$tokenManagerProperty->setValue($client, $this->tokenManagerMock);
$factoryMock = $this->createMock(Factory::class);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$engagementsMock = $this->createMock(\SevenShores\Hubspot\Endpoints\Engagements::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$factoryMock->method('__call')->with('engagements')->willReturn($engagementsMock);
$client->method('getInstance')->willReturn($factoryMock);
$discoveryMock = $this->createMock(HubSpotDiscovery\Discovery::class);
$crmMock = $this->createMock(HubSpotDiscovery\Crm\Discovery::class);
$associationsMock = $this->createMock(HubSpotDiscovery\Crm\Associations\Discovery::class);
$propertiesMock = $this->createMock(HubSpotDiscovery\Crm\Properties\Discovery::class);
$pipelinesMock = $this->createMock(HubSpotDiscovery\Crm\Pipelines\Discovery::class);
$coreApiMock = $this->createMock(CoreApi::class);
$pipelinesApiMock = $this->createMock(PipelinesApi::class);
$associationsBatchApiMock = $this->createMock(BatchApi::class);
$dealsBasicApiMock = $this->createMock(DealsBasicApi::class);
$propertiesMock->method('__call')->with('coreApi')->willReturn($coreApiMock);
$pipelinesMock->method('__call')->with('pipelinesApi')->willReturn($pipelinesApiMock);
$associationsMock->method('__call')->with('batchApi')->willReturn($associationsBatchApiMock);
$dealsDiscoveryMock = $this->createMock(DealsDiscovery::class);
$dealsDiscoveryMock->method('__call')->with('basicApi')->willReturn($dealsBasicApiMock);
$returnMap = ['properties' => $propertiesMock, 'pipelines' => $pipelinesMock, 'associations' => $associationsMock, 'deals' => $dealsDiscoveryMock];
$crmMock->method('__call')
->willReturnCallback(static fn (string $name) => $returnMap[$name])
;
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client->method('getNewInstance')->willReturn($discoveryMock);
$this->client = $client;
$this->config = $this->createMock(Configuration::class);
$this->client->setConfiguration($this->config);
$this->coreApiMock = $coreApiMock;
$this->pipelinesApiMock = $pipelinesApiMock;
$this->associationsBatchApiMock = $associationsBatchApiMock;
$this->dealsBasicApiMock = $dealsBasicApiMock;
$this->engagementsMock = $engagementsMock;
$this->hubspotClientMock = $hubspotClientMock;
}
public function testGetMinimumApiVersion(): void
{
$this->assertIsString($this->client->getMinimumApiVersion());
}
public function testGetInstance(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$client = new Client($socialAccountService, $paginationService, $tokenManager);
$client->setBaseUrl('[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]))
;
$this->assertEquals(
[
['id' => 'foo', 'label' => 'bar'],
['id' => 'baz', 'label' => 'qux'],
],
$this->client->fetchOpportunityPipelineStages()
);
}
public function testFetchOpportunityPipelineStagesErrorResponse(): void
{
$this->pipelinesApiMock
->method('getAll')
->with('deals')
->willReturn(new Error(['message' => 'test error']))
;
$this->assertEmpty($this->client->fetchOpportunityPipelineStages());
}
#[\PHPUnit\Framework\Attributes\DataProvider('meetingOutcomeFieldProvider')]
public function testFetchMeetingOutcomeFieldOptions(string $fieldId, string $expectedEndpoint): void
{
$field = new Field(['crm_provider_id' => $fieldId]);
$this->hubspotClientMock
->expects($this->once())
->method('request')
->with('GET', $expectedEndpoint)
->willReturn($this->generateHubSpotResponse(
[
'options' => [
['value' => 'option_1', 'label' => 'Option 1', 'displayOrder' => 0],
['value' => 'option_2', 'label' => 'Option 2', 'displayOrder' => 1],
['value' => 'option_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]
))
;
$this->assertEquals(
[
['id' => 'option_1', 'value' => 'option_1', 'label' => 'Option 1', 'display_order' => 0],
['id' => 'option_2', 'value' => 'option_2', 'label' => 'Option 2', 'display_order' => 1],
['id' => 'option_3', 'value' => 'option_3', 'label' => 'Option 3', 'display_order' => 2],
],
$this->client->fetchMeetingOutcomeFieldOptions($field)
);
}
public static function meetingOutcomeFieldProvider(): array
{
return [
'meeting outcome field' => [
'meetingOutcome',
'[URL_WITH_CREDENTIALS] The class CollectionResponsePipeline will be deprecated in the next Hubspot version
*/
$pipelineStagesResponse = new CollectionResponsePipeline([
'results' => [$this->generatePipeline()],
]);
$this->pipelinesApiMock
->method('getAll')
->willReturn($pipelineStagesResponse);
}
if ($type === self::RESPONSE_TYPE_PIPELINE_FIELD) {
$field->method('isStageField')->willReturn(false);
$field->method('isPipelineField')->willReturn(true);
$pipelineResponse = $this->generateHubSpotResponse([
'results' => [
['id' => '123', 'label' => 'Sales'],
['id' => 'default', 'label' => 'CS'],
],
]);
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($pipelineResponse);
}
$this->assertEquals(
$responses[$type],
$this->client->fetchOpportunityFieldOptions($field)
);
}
public static function opportunityFieldOptionsProvider(): array
{
return [
'stage field' => [
'field' => new Field(['crm_provider_id' => 'dealstage']),
'type' => self::RESPONSE_TYPE_STAGE_FIELD,
],
'pipeline field' => [
'field' => new Field(['crm_provider_id' => 'pipeline']),
'type' => self::RESPONSE_TYPE_PIPELINE_FIELD,
],
'regular field' => [
'field' => new Field(['crm_provider_id' => 'some_property']),
'type' => self::RESPONSE_TYPE_REGULAR_FIELD,
],
];
}
private function generateHubSpotResponse(array $data): HubspotResponse
{
return new HubspotResponse(new Response(200, [], json_encode($data)));
}
private function generateProperty(): Property
{
return new Property([
'name' => 'some_property',
'options' => [
[
'label' => 'label_1',
'value' => 'value_1',
],
[
'label' => 'label_2',
'value' => 'value_2',
],
],
]);
}
private function generatePipeline(): Pipeline
{
return new Pipeline(['stages' => [
new PipelineStage(['id' => 'foo', 'label' => 'bar']),
new PipelineStage(['id' => 'baz', 'label' => 'qux']),
]]);
}
public function testFetchOpportunityPipelines(): void
{
$this->client
->method('makeRequest')
->with('/crm/v3/pipelines/deals')
->willReturn($this->generateHubSpotResponse([
'results' => [
['id' => 'id_1', 'label' => 'Option 1', 'displayOrder' => 0],
['id' => 'id_2', 'label' => 'Option 2', 'displayOrder' => 1],
['id' => 'id_3', 'label' => 'Option 3', 'displayOrder' => 2],
],
]));
$this->assertEquals(
[
['id' => 'id_1', 'label' => 'Option 1'],
['id' => 'id_2', 'label' => 'Option 2'],
['id' => 'id_3', 'label' => 'Option 3'],
],
$this->client->fetchOpportunityPipelines()
);
}
public function testGetPaginatedData(): void
{
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
['id' => 'id_3', 'properties' => []],
];
// Mock the pagination service to return a generator and modify reference parameters
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
['payload_key' => 'payload_value'],
'foobar',
0,
$this->anything(),
$this->anything()
)
->willReturnCallback(function ($client, $payload, $type, $offset, &$total, &$lastRecordId) use ($expectedResults) {
$total = 3;
$lastRecordId = 'id_3';
foreach ($expectedResults as $result) {
yield $result;
}
});
$this->assertEquals(
[
'results' => $expectedResults,
'total' => 3,
'last_record' => 'id_3',
],
$this->client->getPaginatedData(['payload_key' => 'payload_value'], 'foobar')
);
}
public function testGetAssociationsData(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$responseResults = [];
foreach ($ids as $id) {
$from = new PublicObjectId();
$from->setId($id);
$to1 = new PublicObjectId();
$to1->setId('contact_' . $id . '_1');
$to2 = new PublicObjectId();
$to2->setId('contact_' . $id . '_2');
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to1, $to2]);
$responseResults[] = $result;
}
$batchResponse = new BatchResponsePublicAssociationMulti();
$batchResponse->setResults($responseResults);
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function (BatchInputPublicObjectId $batchInput) use ($ids) {
$inputIds = array_map(
fn ($input) => $input->getId(),
$batchInput->getInputs()
);
return $inputIds === $ids;
})
)
->willReturn($batchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$expectedResult = [
'1' => ['contact_1_1', 'contact_1_2'],
'2' => ['contact_2_1', 'contact_2_2'],
'3' => ['contact_3_1', 'contact_3_2'],
];
$this->assertEquals($expectedResult, $result);
}
public function testGetAssociationsDataHandlesException(): void
{
$ids = ['1', '2', '3'];
$fromObject = 'deals';
$toObject = 'contacts';
$exception = new \Exception('API Error');
$this->associationsBatchApiMock->expects($this->once())
->method('read')
->with(
$this->equalTo($fromObject),
$this->equalTo($toObject),
$this->callback(function ($batchInput) use ($ids) {
return $batchInput instanceof \HubSpot\Client\Crm\Associations\Model\BatchInputPublicObjectId
&& count($batchInput->getInputs()) === count($ids);
})
)
->willThrowException($exception);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[Hubspot] Failed to fetch associations',
[
'from_object' => $fromObject,
'to_object' => $toObject,
'reason' => 'API Error',
]
);
$this->client->setLogger($loggerMock);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertEmpty($result);
$this->assertIsArray($result);
}
public function testGetAssociationsDataWithLargeDataSet(): void
{
$ids = array_map(fn ($i) => (string) $i, range(1, 2500)); // More than 1000 items
$fromObject = 'deals';
$toObject = 'contacts';
$firstBatchResponse = new BatchResponsePublicAssociationMulti();
$firstBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, 0, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$firstBatchResponse->setResults($firstBatchResults);
$secondBatchResponse = new BatchResponsePublicAssociationMulti();
$secondBatchResults = array_map(function ($id) {
$from = new PublicObjectId();
$from->setId($id);
$to = new PublicObjectId();
$to->setId('contact_' . $id);
$result = new \HubSpot\Client\Crm\Associations\Model\PublicAssociationMulti();
$result->setFrom($from);
$result->setTo([$to]);
return $result;
}, array_slice($ids, Client::ASSOCIATIONS_BATCH_SIZE_LIMIT));
$secondBatchResponse->setResults($secondBatchResults);
$this->associationsBatchApiMock->expects($this->exactly(3))
->method('read')
->willReturnOnConsecutiveCalls($firstBatchResponse, $secondBatchResponse);
$result = $this->client->getAssociationsData($ids, $fromObject, $toObject);
$this->assertCount(2500, $result);
$this->assertArrayHasKey('1', $result);
$this->assertArrayHasKey('2500', $result);
$this->assertEquals(['contact_1'], $result['1']);
$this->assertEquals(['contact_2500'], $result['2500']);
}
public function testGetContactByEmailSuccess(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname', 'email'];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn([
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
]);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname,email', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => [
'firstname' => 'John',
'lastname' => 'Doe',
'email' => '[EMAIL]',
],
], $result);
}
public function testGetContactByEmailWithEmptyFields(): void
{
$email = '[EMAIL]';
$fields = [];
$contactMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$contactMock->method('getId')->willReturn('12345');
$contactMock->method('getProperties')->willReturn(['email' => '[EMAIL]']);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, '', null, false, 'email')
->willReturn($contactMock);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new NullLogger());
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([
'id' => '12345',
'properties' => ['email' => '[EMAIL]'],
], $result);
}
public function testGetContactByEmailApiException(): void
{
$email = '[EMAIL]';
$fields = ['firstname', 'lastname'];
$exception = new \HubSpot\Client\Crm\Contacts\ApiException('Contact not found', 404);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($email, 'firstname,lastname', null, false, 'email')
->willThrowException($exception);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('info')
->with(
'[Hubspot] Failed to fetch contact',
[
'email' => $email,
'reason' => 'Contact not found',
]
);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger($loggerMock);
$result = $client->getContactByEmail($email, $fields);
$this->assertEquals([], $result);
}
public function testGetOpportunityById(): void
{
$opportunityId = '12345';
$expectedProperties = [
'dealname' => 'Test Opportunity',
'amount' => '1000.00',
'closedate' => '2024-12-31T23:59:59.999Z',
'dealstage' => 'presentationscheduled',
'pipeline' => 'default',
];
$mockHubspotOpportunity = $this->createMock(DealWithAssociations::class);
$mockHubspotOpportunity->method('getProperties')->willReturn((object) $expectedProperties);
$mockHubspotOpportunity->method('getId')->willReturn($opportunityId);
$now = new \DateTimeImmutable();
$mockHubspotOpportunity->method('getCreatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getUpdatedAt')->willReturn($now);
$mockHubspotOpportunity->method('getArchived')->willReturn(false);
$this->dealsBasicApiMock
->expects($this->once())
->method('getById')
->willReturn($mockHubspotOpportunity);
// Assuming Client::getOpportunityById processes the SimplePublicObject and returns an associative array.
// The structure might be like: ['id' => ..., 'properties' => [...], 'createdAt' => ..., ...]
// Adjust assertions below based on the actual return structure of your method.
$result = $this->client->getOpportunityById($opportunityId, ['test', 'test']);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertEquals($opportunityId, $result['id']);
}
public function testGetContactById(): void
{
$crmId = 'contact-123';
$fields = ['firstname', 'lastname'];
$expectedProperties = ['firstname' => 'John', 'lastname' => 'Doe'];
$mockContact = $this->createMock(\HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectWithAssociations::class);
$mockContact->method('getId')->willReturn($crmId);
$mockContact->method('getProperties')->willReturn((object) $expectedProperties);
$contactsApiMock = $this->createMock(\HubSpot\Client\Crm\Contacts\Api\BasicApi::class);
$contactsApiMock->expects($this->once())
->method('getById')
->with($crmId, 'firstname,lastname')
->willReturn($mockContact);
$contactsDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Contacts\Discovery::class);
$contactsDiscoveryMock->method('__call')->with('basicApi')->willReturn($contactsApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($contactsDiscoveryMock) {
if ($name === 'contacts') {
return $contactsDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getContactById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testGetAccountById(): void
{
$crmId = 'account-123';
$fields = ['name', 'industry'];
$expectedProperties = ['name' => 'Acme Corp', 'industry' => 'Technology'];
$mockCompany = $this->createMock(\HubSpot\Client\Crm\Companies\Model\SimplePublicObjectWithAssociations::class);
$mockCompany->method('getId')->willReturn($crmId);
$mockCompany->method('getProperties')->willReturn((object) $expectedProperties);
$companiesApiMock = $this->createMock(\HubSpot\Client\Crm\Companies\Api\BasicApi::class);
$companiesApiMock->expects($this->once())
->method('getById')
->with($crmId, 'name,industry')
->willReturn($mockCompany);
$companiesDiscoveryMock = $this->createMock(\HubSpot\Discovery\Crm\Companies\Discovery::class);
$companiesDiscoveryMock->method('__call')->with('basicApi')->willReturn($companiesApiMock);
$crmMock = $this->createMock(\HubSpot\Discovery\Crm\Discovery::class);
$crmMock->method('__call')->willReturnCallback(function ($name) use ($companiesDiscoveryMock) {
if ($name === 'companies') {
return $companiesDiscoveryMock;
}
return $this->createMock(\HubSpot\Discovery\Crm\Properties\Discovery::class);
});
$discoveryMock = $this->createMock(\HubSpot\Discovery\Discovery::class);
$discoveryMock->method('__call')->with('crm')->willReturn($crmMock);
$client = $this->createPartialMock(Client::class, ['getNewInstance']);
$client->method('getNewInstance')->willReturn($discoveryMock);
$client->setLogger(new \Psr\Log\NullLogger());
$result = $client->getAccountById($crmId, $fields);
$this->assertIsArray($result);
$this->assertArrayHasKey('id', $result);
$this->assertArrayHasKey('properties', $result);
$this->assertEquals($crmId, $result['id']);
$this->assertEquals((object) $expectedProperties, $result['properties']);
}
public function testEnsureValidTokenWithNoTokenUpdate(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
$originalToken = 'original_token';
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$accessTokenProperty->setValue($this->client, $originalToken);
// Mock token manager to return null (no refresh needed)
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn(null);
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was not changed
$this->assertEquals($originalToken, $accessTokenProperty->getValue($this->client));
}
public function testGetPaginatedDataGeneratorDelegatesToPaginationService(): void
{
$payload = ['filters' => []];
$type = 'contacts';
$offset = 0;
$total = 0;
$lastRecordId = null;
$expectedResults = [
['id' => 'id_1', 'properties' => []],
['id' => 'id_2', 'properties' => []],
];
// Mock the pagination service to return a generator
$this->paginationServiceMock
->expects($this->once())
->method('getPaginatedDataGenerator')
->with(
$this->client,
$payload,
$type,
$offset,
$this->anything(),
$this->anything()
)
->willReturnCallback(function () use ($expectedResults) {
foreach ($expectedResults as $result) {
yield $result;
}
});
// Execute the pagination
$results = [];
foreach ($this->client->getPaginatedDataGenerator($payload, $type, $offset, $total, $lastRecordId) as $result) {
$results[] = $result;
}
$this->assertCount(2, $results);
$this->assertEquals('id_1', $results[0]['id']);
$this->assertEquals('id_2', $results[1]['id']);
}
public function testEnsureValidTokenDelegatesToTokenManager(): void
{
$socialAccountMock = $this->createMock(SocialAccount::class);
// Set up OAuth account
$reflection = new \ReflectionClass($this->client);
$oauthAccountProperty = $reflection->getProperty('oauthAccount');
$oauthAccountProperty->setAccessible(true);
$oauthAccountProperty->setValue($this->client, $socialAccountMock);
// Mock token manager to return new token
$this->tokenManagerMock
->expects($this->once())
->method('ensureValidToken')
->with($socialAccountMock)
->willReturn('new_access_token');
// Call ensureValidToken
$this->client->ensureValidToken();
// Verify access token was updated
$accessTokenProperty = $reflection->getProperty('accessToken');
$accessTokenProperty->setAccessible(true);
$this->assertEquals('new_access_token', $accessTokenProperty->getValue($this->client));
}
public function testGetOwnersArchivedWithValidResponse(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => true,
],
],
];
// Create a mock response object
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
// Set up the client to return our test data
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=true'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(true);
// Assert the results
$this->assertCount(1, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('John Doe', $result[0]->getFullName());
$this->assertTrue($result[0]->isArchived());
}
public function testGetOwnersArchivedWithEmptyResponse(): void
{
// Create a mock response object with empty results
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn(['results' => []]);
// Set up the client to return empty results
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
// Call the method
$result = $this->client->getOwnersArchived(false);
// Assert the results
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithInvalidResponse(): void
{
// Create a mock response that will throw an exception when toArray is called
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willThrowException(new \InvalidArgumentException('Invalid JSON'));
// Set up the client to return the problematic response
$this->client->method('makeRequest')
->willReturn($response);
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(true);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithHttpError(): void
{
// Set up the client to throw an exception
$this->client->method('makeRequest')
->willThrowException(new \Exception('HTTP Error'));
// Mock the logger to expect an error message
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with($this->stringContains('Failed to fetch owners'));
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
// Call the method and expect an empty array on error
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertEmpty($result);
}
public function testGetOwnersArchivedWithOwnerCreationException(): void
{
$responseData = [
'results' => [
[
'id' => '123',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'John',
'lastName' => 'Doe',
'userId' => 456,
'userIdIncludingInactive' => 789,
'createdAt' => '2023-01-01T12:00:00Z',
'updatedAt' => '2023-01-02T12:00:00Z',
'archived' => false,
],
[
'id' => '456',
'email' => '[EMAIL]',
'type' => 'PERSON',
'createdAt' => 'invalid-date-format',
],
[
'id' => '789',
'email' => '[EMAIL]',
'type' => 'PERSON',
'firstName' => 'Jane',
'lastName' => 'Smith',
'userId' => 999,
'userIdIncludingInactive' => 888,
'createdAt' => '2023-01-03T12:00:00Z',
'updatedAt' => '2023-01-04T12:00:00Z',
'archived' => false,
],
],
];
$response = $this->createMock(\SevenShores\Hubspot\Http\Response::class);
$response->method('toArray')
->willReturn($responseData);
$this->client->method('makeRequest')
->with(
'/crm/v3/owners',
'GET',
[],
'archived=false'
)
->willReturn($response);
$loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
$loggerMock->expects($this->once())
->method('error')
->with(
'[HubSpot] Failed to process owner data',
$this->callback(function ($context) {
return isset($context['result']) &&
isset($context['error']) &&
$context['result']['id'] === '456' &&
$context['result']['email'] === '[EMAIL]' &&
str_contains($context['error'], 'invalid-date-format');
})
);
$reflection = new \ReflectionClass($this->client);
$loggerProperty = $reflection->getProperty('log');
$loggerProperty->setAccessible(true);
$loggerProperty->setValue($this->client, $loggerMock);
$result = $this->client->getOwnersArchived(false);
$this->assertIsArray($result);
$this->assertCount(2, $result);
$this->assertEquals('123', $result[0]->getId());
$this->assertEquals('[EMAIL]', $result[0]->getEmail());
$this->assertEquals('789', $result[1]->getId());
$this->assertEquals('[EMAIL]', $result[1]->getEmail());
}
public function testMakeRequestWithGetMethod(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService::class);
$tokenManager = $this->createMock(HubspotTokenManager::class);
$psrResponse = new Response(200, [], json_encode(['status' => 'success']));
$expectedResponse = new HubspotResponse($psrResponse);
$hubspotClientMock = $this->createMock(HubspotClient::class);
$hubspotClientMock->expects($this->once())
->method('request')
->with(
'GET',
'https://api.hubapi.com/crm/v3/objects/contacts',
[],
null,
true
)
->willReturn($expectedResponse);
$factoryMock = $this->createMock(Factory::class);
$factoryMock->method('getClient')->willReturn($hubspotClientMock);
$client = $this->getMockBuilder(Client::class)
->setConstructorArgs([$socialAccountService, $paginationService, $tokenManager])
->onlyMethods(['getInstance'])
->getMock();
$client->method('getInstance')->willReturn($factoryMock);
$client->setAccessToken(new AccessToken(['access_token' => 'test_token']));
$result = $client->makeRequest('/crm/v3/objects/contacts', 'GET');
$this->assertSame($expectedResponse, $result);
}
public function testMakeRequestWithGetMethodAndQueryString(): void
{
$socialAccountService = $this->createMock(SocialAccountService::class);
$paginationService = $this->createMock(HubspotPaginationService...
|
20064
|
NULL
|
NULL
|
NULL
|
|
3157
|
122
|
32
|
2026-05-07T12:04:31.062591+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778155471062_m2.jpg...
|
iTerm2
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PostmanEditViewWindowHelpHubSpot rate limit imple PostmanEditViewWindowHelpHubSpot rate limit implementation strategy vcan I call it trom postman 100 times>* ThinkingKeep going in Claude CodeSwitch to Claude Code and let Claude work directiv in vour.repo. running and testing as it goesWrite a message…Hubspot rate limits reference - MDUse timeZone tointerpret resetsAt from the dally erCheat sheet: profiling a new portal in PostmanThree calls, in order:1. GEl /account-into/vs/details → portalinto+GET /account-info/v3/api-usage/daily/privameaningful for private apps)3. Skip search probing — the 5/sec is fixedError response shape"status""error"."message": "You have reached your secondly 1"errorType": "RATE LIMIT","policyName": "SECONDLY"."...","requesttd".""nolncvname values.eeconniy =caareh huteter e/cer• TEN SECONDLY ROLLING - burst bucket (110/10sprivate)• DAILY — private apps dailv ceilingAlwavs inspect nolicvName on 429 to know which buchack offOther operational guidelines• Error responses must stay under 5% of total dailycertificationi• Polling endpoints: minimum interval 5 minutes.• Search auery may 3 000 chars may 18 Alters acroresults per query.• Ratch enânoints. 1in to 100 records ner call regdlaOpus 4.7 AdaptiveClaude ic Aland can make mictakec Plosce double-chork racnoncod"supoont Dally • nowYour team is now on the Free plan with 1 admin. You retain editing access and other members are read-only. View team permissions to see who can edit, or upgrade to restore collaboration.v COLLECtIONs, Contactsv CRM Objectsv crm/vslobiects/obiect Twoe,> U batchv ooiect Id›> • associations/{to Object Type)GET Read20: An error occurred.eg. successful operationDEL Archive> PATCH Update>GET List> POST Filter, Sort, and Search CRM Objects> CRM Owners> CRM Pinelinec> Dealsv Engagements› OLD ENGAGEMENTSGET list meetingsPOST search moditied companiesPOST search tackeGET read call> POST soarch callsGET list callsPOST meetings scheduledGET get meetingPOST get link to task• PosT Create Contact with AssociationHubsnotlJournal & webhoooks v4post Get tokenGET det subscriotionsPOST create subscrintiorGET Journal earliestGET Journal latestgeT httos:nuosoorGET next offsetPOST aet Token prodDEL DELETE CLIRCCDIDTION DEP DOPTAII>ENVIRONMENTS) spFcsELOWS§ Connect Git E Console 2 TernGET next off. • POST search •GET read ciNo environmentvCRM Obiects > crm/v3/obiects/{obiect Tvoe) > (obiect Id) > Readl) SaveToaseurl)) /crm/vs/objects/call/4801/1536580/properties=boby.internalmeetingnotescassociations=contacis,deals,companiesE Docs Params • Authorization • Headers 9 Body Scripts SettingsCookiesQuery ParamsKeyv propertiespropertesValveboby.internalmeetingNotesname<string>companiesfalsefalse205825333040DescriotionBulk Edit ..A comma separated list or the properties to be returned inA comma separated list of the properties to be returned inA comma separated list of object types to retrieve associalA comma separated list of obiect types to retrieve associalWhether to return only results that have been archived,The name of a property whose values are unique for this olv associationscontacis. deals companiesDescriptionHeaders 21 lest Results404 Not Found • 162 ms • 1.2 KB • têe.g- save kesponse .:statusdateThu. 07 May 2026 11:25•25 GMTcontent-typewovt/htmlcharcotcica.0950.1cf-ray9f7fdd2hea988428-SOfct-cache-statusDYNAMIOcache-controlmuct-revalidate no-cache no-ctorestrict-transport-securitymax-ade-31536000- includeSubDomains: preloadorigin, Accept-Encodinaaccess-control-allow-credentialsserver-timinalhcid:desc="019e022f-77c3-7883-a217-66912667639f" cfr.desc="9f7fdd2c02ef3402-IAD"x-hubspot-correlation-id799 917 H691H904y-hubenot-notfoundl10000wwnhonrradhlmmawx-hubspot-ratelimit-remainingx-hubspot-ratelimit-secondlv-remainingrenort-tof"endnoints".f("url"."httnc+|Ma nel.cloudflare com\renort|/v42c=oq20F0hENDQHit@cRe2VRe"success fraction":0.01."report_to"-"cf-nel""max age":604800}100% L2VAIlc baseUrlo tokenThu 7 May 15:04:31Uparadehttos:/lapi.hubaoCNeR-JHaMxlZoiNd.• All VarlablesGiobals Vault Took -- m=m...
|
NULL
|
-9157058652395133783
|
NULL
|
visual_change
|
ocr
|
NULL
|
PostmanEditViewWindowHelpHubSpot rate limit imple PostmanEditViewWindowHelpHubSpot rate limit implementation strategy vcan I call it trom postman 100 times>* ThinkingKeep going in Claude CodeSwitch to Claude Code and let Claude work directiv in vour.repo. running and testing as it goesWrite a message…Hubspot rate limits reference - MDUse timeZone tointerpret resetsAt from the dally erCheat sheet: profiling a new portal in PostmanThree calls, in order:1. GEl /account-into/vs/details → portalinto+GET /account-info/v3/api-usage/daily/privameaningful for private apps)3. Skip search probing — the 5/sec is fixedError response shape"status""error"."message": "You have reached your secondly 1"errorType": "RATE LIMIT","policyName": "SECONDLY"."...","requesttd".""nolncvname values.eeconniy =caareh huteter e/cer• TEN SECONDLY ROLLING - burst bucket (110/10sprivate)• DAILY — private apps dailv ceilingAlwavs inspect nolicvName on 429 to know which buchack offOther operational guidelines• Error responses must stay under 5% of total dailycertificationi• Polling endpoints: minimum interval 5 minutes.• Search auery may 3 000 chars may 18 Alters acroresults per query.• Ratch enânoints. 1in to 100 records ner call regdlaOpus 4.7 AdaptiveClaude ic Aland can make mictakec Plosce double-chork racnoncod"supoont Dally • nowYour team is now on the Free plan with 1 admin. You retain editing access and other members are read-only. View team permissions to see who can edit, or upgrade to restore collaboration.v COLLECtIONs, Contactsv CRM Objectsv crm/vslobiects/obiect Twoe,> U batchv ooiect Id›> • associations/{to Object Type)GET Read20: An error occurred.eg. successful operationDEL Archive> PATCH Update>GET List> POST Filter, Sort, and Search CRM Objects> CRM Owners> CRM Pinelinec> Dealsv Engagements› OLD ENGAGEMENTSGET list meetingsPOST search moditied companiesPOST search tackeGET read call> POST soarch callsGET list callsPOST meetings scheduledGET get meetingPOST get link to task• PosT Create Contact with AssociationHubsnotlJournal & webhoooks v4post Get tokenGET det subscriotionsPOST create subscrintiorGET Journal earliestGET Journal latestgeT httos:nuosoorGET next offsetPOST aet Token prodDEL DELETE CLIRCCDIDTION DEP DOPTAII>ENVIRONMENTS) spFcsELOWS§ Connect Git E Console 2 TernGET next off. • POST search •GET read ciNo environmentvCRM Obiects > crm/v3/obiects/{obiect Tvoe) > (obiect Id) > Readl) SaveToaseurl)) /crm/vs/objects/call/4801/1536580/properties=boby.internalmeetingnotescassociations=contacis,deals,companiesE Docs Params • Authorization • Headers 9 Body Scripts SettingsCookiesQuery ParamsKeyv propertiespropertesValveboby.internalmeetingNotesname<string>companiesfalsefalse205825333040DescriotionBulk Edit ..A comma separated list or the properties to be returned inA comma separated list of the properties to be returned inA comma separated list of object types to retrieve associalA comma separated list of obiect types to retrieve associalWhether to return only results that have been archived,The name of a property whose values are unique for this olv associationscontacis. deals companiesDescriptionHeaders 21 lest Results404 Not Found • 162 ms • 1.2 KB • têe.g- save kesponse .:statusdateThu. 07 May 2026 11:25•25 GMTcontent-typewovt/htmlcharcotcica.0950.1cf-ray9f7fdd2hea988428-SOfct-cache-statusDYNAMIOcache-controlmuct-revalidate no-cache no-ctorestrict-transport-securitymax-ade-31536000- includeSubDomains: preloadorigin, Accept-Encodinaaccess-control-allow-credentialsserver-timinalhcid:desc="019e022f-77c3-7883-a217-66912667639f" cfr.desc="9f7fdd2c02ef3402-IAD"x-hubspot-correlation-id799 917 H691H904y-hubenot-notfoundl10000wwnhonrradhlmmawx-hubspot-ratelimit-remainingx-hubspot-ratelimit-secondlv-remainingrenort-tof"endnoints".f("url"."httnc+|Ma nel.cloudflare com\renort|/v42c=oq20F0hENDQHit@cRe2VRe"success fraction":0.01."report_to"-"cf-nel""max age":604800}100% L2VAIlc baseUrlo tokenThu 7 May 15:04:31Uparadehttos:/lapi.hubaoCNeR-JHaMxlZoiNd.• All VarlablesGiobals Vault Took -- m=m...
|
3155
|
NULL
|
NULL
|
NULL
|
|
23721
|
1000
|
30
|
2026-05-12T08:24:04.019736+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778574244019_m1.jpg...
|
PhpStorm
|
faVsco.js – console [PROD]
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
=+SlackFileEditViewGoHistoryWindowHelp→ws.planhat. =+SlackFileEditViewGoHistoryWindowHelp→ws.planhat.com/jiminny/home/data-explorer/usageJiminnySearch JiminnyContent Explorer7 Metric |Datasetautomated-reports-traEnd UserData ExplorerQ autactivities.automated-reports-CalendarNotificationsNameOverviewRaw DataTral*• Morev EndUser 1Metricsautomated-reports-track-Sections +CS Day-to-day2 Getting started GuideJust CS Data* Daily Operations05 May06 May07• Weekly prep© Renewals and Upsell:= € Risk and Churn An...Implementation -Impl ProjectsTrial Opps (Under Rev...Stoyan's clientsCommentsAdd a commentHomeDMsActivityFilesLater..•More(aolSupport Daily • in 3 h 36 m100% C73• Tue 12 May 11:24:03→Describe what you are looking forJiminny ...eam+ More unreadsChannels# ai-chapter# alerts# backend# bugs# confusion-clinic# curiosity_lab# engineering# general# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi..0 Direct messagesPetko KashinskiR. Steliyan Georgiev%. Galya Dimitrovae. Aneliya Angelova&. Stefka Stoyanova€. Vasil Vasilev. Nikolay IvanovSteliyan Georgiev6 0Messagest Add canvasO Files+AutomaTodayPreview in wawnStatusBacklogPriority= MediumAssigneeUnassignedAs of today at 10:46 AM RefreshOpen in JiraSummariseпроблем беше че няма pdf_url сега ще серазровя за конкретен репорти идеята е на РНР да не го пробваме през час ноГаля попита за регенериранепредполагам че е нещо случайно най-вероятносамо един репортза бъдеще може да в самия пропхет има липроверка дали има всичко преди да върнеresponse, или пак от РНР да се провери предипращане и да се пусне отновоSteliyan Georgiev 10:51 AMможе да направя профет ако няма pdf_url, даврьща грешка за пхп?Lukas Kovalik 10:51 AMпо-скоро да се регенерираMessage Steliyan Georgiev+...
|
NULL
|
-9155444352694959571
|
NULL
|
click
|
ocr
|
NULL
|
=+SlackFileEditViewGoHistoryWindowHelp→ws.planhat. =+SlackFileEditViewGoHistoryWindowHelp→ws.planhat.com/jiminny/home/data-explorer/usageJiminnySearch JiminnyContent Explorer7 Metric |Datasetautomated-reports-traEnd UserData ExplorerQ autactivities.automated-reports-CalendarNotificationsNameOverviewRaw DataTral*• Morev EndUser 1Metricsautomated-reports-track-Sections +CS Day-to-day2 Getting started GuideJust CS Data* Daily Operations05 May06 May07• Weekly prep© Renewals and Upsell:= € Risk and Churn An...Implementation -Impl ProjectsTrial Opps (Under Rev...Stoyan's clientsCommentsAdd a commentHomeDMsActivityFilesLater..•More(aolSupport Daily • in 3 h 36 m100% C73• Tue 12 May 11:24:03→Describe what you are looking forJiminny ...eam+ More unreadsChannels# ai-chapter# alerts# backend# bugs# confusion-clinic# curiosity_lab# engineering# general# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi..0 Direct messagesPetko KashinskiR. Steliyan Georgiev%. Galya Dimitrovae. Aneliya Angelova&. Stefka Stoyanova€. Vasil Vasilev. Nikolay IvanovSteliyan Georgiev6 0Messagest Add canvasO Files+AutomaTodayPreview in wawnStatusBacklogPriority= MediumAssigneeUnassignedAs of today at 10:46 AM RefreshOpen in JiraSummariseпроблем беше че няма pdf_url сега ще серазровя за конкретен репорти идеята е на РНР да не го пробваме през час ноГаля попита за регенериранепредполагам че е нещо случайно най-вероятносамо един репортза бъдеще може да в самия пропхет има липроверка дали има всичко преди да върнеresponse, или пак от РНР да се провери предипращане и да се пусне отновоSteliyan Georgiev 10:51 AMможе да направя профет ако няма pdf_url, даврьща грешка за пхп?Lukas Kovalik 10:51 AMпо-скоро да се регенерираMessage Steliyan Georgiev+...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
17719
|
777
|
48
|
2026-05-11T10:30:44.986976+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778495444986_m2.jpg...
|
Firefox
|
Screenpipe — Archive — Personal
|
True
|
app.screenpipe.lakylak.xyz
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
New Tab
New Tab
Screenpipe — Archive
Screenpipe — New Tab
New Tab
Screenpipe — Archive
Screenpipe — Archive
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe [archive.db · 12323.6MB]
Screenpipe
[archive.db · 12323.6MB]
Activity
Search
Audio
Work Report
Timetable
AI Summary
Date
07
/
05
/
2026
Calendar
Monitor
Jump to
--
:
--
Go
APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN
−
1×
+
Follow
Follow
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
14:30
15:00
15:30
16:00
16:30
17:00
17:30
18:00
18:30
19:00
19:30
20:00
20:30
21:00
21:30
7 May 15:38 · PhpStorm / faVsco.js – accounts [jiminny@localhost]
⏮ 30s
◀ 10s
▶ Play
10s ▶
30s ⏭
15:38
iTerm2
Firefox
CleanShot X
Finder
QuickTime Player
PhpStorm
Music
Control Centre
Claude
Slack
Alfred
Raycast
System Information...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.2942154,"top":0.0518755,"width":0.113696806,"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":"New Tab","depth":5,"bounds":{"left":0.3075133,"top":0.06304868,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"bounds":{"left":0.2942154,"top":0.08459697,"width":0.113696806,"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":"Screenpipe — Archive","depth":5,"bounds":{"left":0.3075133,"top":0.09577015,"width":0.037898935,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.3956117,"top":0.09177973,"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":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.29704124,"top":0.118914604,"width":0.108211435,"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.29704124,"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 Google Gemini (⌃X)","depth":6,"bounds":{"left":0.30801198,"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.31914893,"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.3302859,"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":"Bitwarden","depth":6,"bounds":{"left":0.3414229,"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":"AXHeading","text":"Screenpipe [archive.db · 12323.6MB]","depth":7,"bounds":{"left":0.41456118,"top":0.061452515,"width":0.06698803,"height":0.017956903},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"bounds":{"left":0.41456118,"top":0.06304868,"width":0.027759308,"height":0.014764565},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[archive.db · 12323.6MB]","depth":9,"bounds":{"left":0.44365028,"top":0.06703911,"width":0.037898935,"height":0.009976057},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"bounds":{"left":0.48620346,"top":0.059856344,"width":0.024767287,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"bounds":{"left":0.51163566,"top":0.059856344,"width":0.023769947,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"bounds":{"left":0.53607047,"top":0.059856344,"width":0.020944148,"height":0.0207502},"on_screen":true,"help_text":"No audio data in this database","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"bounds":{"left":0.55767953,"top":0.059856344,"width":0.03507314,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Timetable","depth":7,"bounds":{"left":0.5934175,"top":0.059856344,"width":0.029753989,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"bounds":{"left":0.62383646,"top":0.059856344,"width":0.034075797,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"bounds":{"left":0.93849736,"top":0.0650439,"width":0.008144947,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"07","depth":9,"bounds":{"left":0.9552859,"top":0.06464485,"width":0.0048204786,"height":0.011572227},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"bounds":{"left":0.96110374,"top":0.06464485,"width":0.0023271276,"height":0.011572227},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05","depth":9,"bounds":{"left":0.9644282,"top":0.06464485,"width":0.0048204786,"height":0.011572227},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"bounds":{"left":0.970246,"top":0.06464485,"width":0.002493351,"height":0.011572227},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"bounds":{"left":0.9737367,"top":0.06464485,"width":0.009474734,"height":0.011572227},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"bounds":{"left":0.98454124,"top":0.0650439,"width":0.0051529254,"height":0.010774142},"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":"Monitor","depth":9,"bounds":{"left":0.4945146,"top":0.10853951,"width":0.013464096,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jump to","depth":9,"bounds":{"left":0.8530585,"top":0.10853951,"width":0.01412899,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"bounds":{"left":0.87317157,"top":0.10814046,"width":0.0048204786,"height":0.011572227},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"bounds":{"left":0.87898934,"top":0.10814046,"width":0.0023271276,"height":0.011572227},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"bounds":{"left":0.88231385,"top":0.10814046,"width":0.0048204786,"height":0.011572227},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Go","depth":8,"bounds":{"left":0.90109706,"top":0.10454908,"width":0.012300532,"height":0.018754989},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN","depth":10,"bounds":{"left":0.49950132,"top":0.14964086,"width":0.10571808,"height":0.009976057},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"−","depth":9,"bounds":{"left":0.8558843,"top":0.1452514,"width":0.009807181,"height":0.018754989},"on_screen":true,"help_text":"Zoom out","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1×","depth":10,"bounds":{"left":0.86984706,"top":0.14924182,"width":0.004155585,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"+","depth":9,"bounds":{"left":0.87832445,"top":0.1452514,"width":0.009640957,"height":0.018754989},"on_screen":true,"help_text":"Zoom in","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Follow","depth":10,"bounds":{"left":0.8912899,"top":0.14924182,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Follow","depth":10,"bounds":{"left":0.89727396,"top":0.14924182,"width":0.011136968,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10:00","depth":13,"bounds":{"left":0.50482047,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10:30","depth":13,"bounds":{"left":0.5219415,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:00","depth":13,"bounds":{"left":0.539395,"top":0.21947326,"width":0.0076462766,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:30","depth":13,"bounds":{"left":0.55651593,"top":0.21947326,"width":0.0076462766,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12:00","depth":13,"bounds":{"left":0.5734708,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12:30","depth":13,"bounds":{"left":0.5905917,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:00","depth":13,"bounds":{"left":0.607879,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:30","depth":13,"bounds":{"left":0.625,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14:00","depth":13,"bounds":{"left":0.642121,"top":0.21947326,"width":0.00831117,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14:30","depth":13,"bounds":{"left":0.65924203,"top":0.21947326,"width":0.00831117,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:00","depth":13,"bounds":{"left":0.6765292,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:30","depth":13,"bounds":{"left":0.69365025,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"16:00","depth":13,"bounds":{"left":0.71077126,"top":0.21947326,"width":0.00831117,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"16:30","depth":13,"bounds":{"left":0.7280585,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"17:00","depth":13,"bounds":{"left":0.7453458,"top":0.21947326,"width":0.007978723,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"17:30","depth":13,"bounds":{"left":0.7624667,"top":0.21947326,"width":0.007978723,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:00","depth":13,"bounds":{"left":0.77958775,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:30","depth":13,"bounds":{"left":0.79670876,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19:00","depth":13,"bounds":{"left":0.8138298,"top":0.21947326,"width":0.00831117,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19:30","depth":13,"bounds":{"left":0.83111703,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20:00","depth":13,"bounds":{"left":0.8479056,"top":0.21947326,"width":0.008643617,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20:30","depth":13,"bounds":{"left":0.86519283,"top":0.21947326,"width":0.008643617,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:00","depth":13,"bounds":{"left":0.88248,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:30","depth":13,"bounds":{"left":0.8997673,"top":0.21947326,"width":0.008144947,"height":0.008778931},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7 May 15:38 · PhpStorm / faVsco.js – accounts [jiminny@localhost]","depth":10,"bounds":{"left":0.49817154,"top":0.2661612,"width":0.125,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"⏮ 30s","depth":9,"bounds":{"left":0.49883643,"top":0.7186752,"width":0.023936171,"height":0.02434158},"on_screen":true,"help_text":"Ctrl+←","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"◀ 10s","depth":9,"bounds":{"left":0.52543217,"top":0.71907425,"width":0.02244016,"height":0.023942538},"on_screen":true,"help_text":"←","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"▶ Play","depth":9,"bounds":{"left":0.5505319,"top":0.71907425,"width":0.027925532,"height":0.023942538},"on_screen":true,"help_text":"Space","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXButton","text":"10s ▶","depth":9,"bounds":{"left":0.58111703,"top":0.71907425,"width":0.022273935,"height":0.023942538},"on_screen":true,"help_text":"→","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"30s ⏭","depth":9,"bounds":{"left":0.60605055,"top":0.7186752,"width":0.024102394,"height":0.02434158},"on_screen":true,"help_text":"Ctrl+→","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15:38","depth":10,"bounds":{"left":0.8992686,"top":0.7254589,"width":0.009807181,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":9,"bounds":{"left":0.49950132,"top":0.7609737,"width":0.011801862,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":9,"bounds":{"left":0.51961434,"top":0.7609737,"width":0.011801862,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CleanShot X","depth":9,"bounds":{"left":0.5397274,"top":0.7609737,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Finder","depth":9,"bounds":{"left":0.5696476,"top":0.7609737,"width":0.010970744,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":9,"bounds":{"left":0.58892953,"top":0.7609737,"width":0.030086435,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PhpStorm","depth":9,"bounds":{"left":0.62732714,"top":0.7609737,"width":0.017287234,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Music","depth":9,"bounds":{"left":0.65292555,"top":0.7609737,"width":0.010305851,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Control Centre","depth":9,"bounds":{"left":0.6715425,"top":0.7609737,"width":0.025598405,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude","depth":9,"bounds":{"left":0.70545214,"top":0.7609737,"width":0.012134309,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Slack","depth":9,"bounds":{"left":0.7258976,"top":0.7609737,"width":0.009474734,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alfred","depth":9,"bounds":{"left":0.7436835,"top":0.7609737,"width":0.010472074,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Raycast","depth":9,"bounds":{"left":0.7624667,"top":0.7609737,"width":0.013630319,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"System Information","depth":9,"bounds":{"left":0.7844083,"top":0.7609737,"width":0.033909574,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-9153389604601519922
|
2756682539224499103
|
click
|
accessibility
|
NULL
|
New Tab
New Tab
Screenpipe — Archive
Screenpipe — New Tab
New Tab
Screenpipe — Archive
Screenpipe — Archive
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe [archive.db · 12323.6MB]
Screenpipe
[archive.db · 12323.6MB]
Activity
Search
Audio
Work Report
Timetable
AI Summary
Date
07
/
05
/
2026
Calendar
Monitor
Jump to
--
:
--
Go
APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN
−
1×
+
Follow
Follow
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
14:30
15:00
15:30
16:00
16:30
17:00
17:30
18:00
18:30
19:00
19:30
20:00
20:30
21:00
21:30
7 May 15:38 · PhpStorm / faVsco.js – accounts [jiminny@localhost]
⏮ 30s
◀ 10s
▶ Play
10s ▶
30s ⏭
15:38
iTerm2
Firefox
CleanShot X
Finder
QuickTime Player
PhpStorm
Music
Control Centre
Claude
Slack
Alfred
Raycast
System Information...
|
17717
|
NULL
|
NULL
|
NULL
|
|
8228
|
364
|
11
|
2026-05-08T10:11:58.048841+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-08/1778 /Users/lukas/.screenpipe/data/data/2026-05-08/1778235118048_m2.jpg...
|
PhpStorm
|
faVsco.js – MatchCrmData.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
7
2
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Jobs\Activity\Import;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Events\Dispatcher;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Jiminny\Component\Queue\Constants;
use Jiminny\Component\Utility\Service\ProviderRateLimiter;
use Jiminny\Contracts\Services\Crm\ServiceInterface;
use Jiminny\DTO\ImportCall\Call;
use Jiminny\Component\TranscriptionSummary\Events\TranscriptionAiSummaryReadyEvent;
use Jiminny\Events\Activities\AiAutomation\ActivityProspectAdded;
use Jiminny\Exceptions\SocialAccountTokenInvalidException;
use Jiminny\Models\Activity;
use Jiminny\Models\Participant;
use Jiminny\Models\Team;
use Jiminny\Repositories\ActivityRepository;
use Jiminny\Services\Crm\CrmObjectsResolver;
use Jiminny\Services\Crm\ProspectSearchStrategyFactory;
use Jiminny\Services\Crm\ProviderRegistry;
use Psr\Log\LoggerInterface;
class MatchCrmData implements ShouldQueue
{
use Dispatchable;
use InteractsWithQueue;
use Queueable;
// AWS visibility timeout allows a maximum of 12 hours. This is 1 minute less.
private const int MAX_DELAY = 43140;
// Infrastructure allows max 3 retries (1 initial execution + 3 retries)
public int $tries = 4;
private Call $call;
private int $activityId;
private Team $team;
private ServiceInterface $crmService;
private LoggerInterface $logger;
private array $logContext;
public function __construct(Call $call, int $activityId)
{
$this->call = $call;
$this->activityId = $activityId;
$this->logContext = [
'activity_id' => $activityId,
'call_id' => $call->getCallId(),
'provider' => $call->getProvider(),
];
$this->onQueue(Constants::QUEUE_DIALERS);
}
public function handle(
CrmObjectsResolver $crmObjectsResolver,
ProviderRegistry $providerRegistry,
ProviderRateLimiter $rateLimiter,
ActivityRepository $activityRepository,
LoggerInterface $logger,
Dispatcher $eventDispatcher,
): void {
$this->logger = $logger;
// Activity is already augmented with CRM data, no need to perform the same operation
if ($this->call->isActivityUpdatedWithCrm()) {
$this->logMessage('Skipping activity. Already updated with CRM data');
return;
}
/** @var Activity $activity */
$activity = $activityRepository->findById($this->activityId);
try {
$this->initialiseCrmService($activity, $providerRegistry);
} catch (SocialAccountTokenInvalidException $exception) {
$this->logMessage('Invalid token, retrying');
$this->release(self::MAX_DELAY); // Try again tomorrow
return;
}
$prospectSearchStrategy = ProspectSearchStrategyFactory::match($this->team);
if ($prospectSearchStrategy->ignoreCrmMatchData()) {
// Ignore any associated opportunity
$this->logger->info('[MatchCrmData] Ignoring crm data because of prospect strategy', [
'activity_id' => $this->activityId,
'strategy' => get_class($prospectSearchStrategy),
]);
return;
}
if (! $rateLimiter->canMakeRequest($activity->getCrm())) {
$this->logMessage('Rate limit reached, retrying');
$this->release($rateLimiter->requestAvailableIn($activity->getCrm()) + random_int(1, 60));
return;
}
$this->logMessage('Resolving CRM objects');
$crmObjects = $crmObjectsResolver->resolveFromCall($this->crmService, $this->call);
$rateLimiter->incrementRequestCount($activity->getCrm());
if (empty($crmObjects)) {
$this->logMessage('Could not resolve CRM objects, retrying');
$this->release(3600);
return;
}
[$lead, $account, $opportunity, $contact, $stage] = $crmObjects;
$activity->update([
'lead_id' => $lead->id ?? null,
'contact_id' => $contact->id ?? null,
'account_id' => $account->id ?? null,
'opportunity_id' => $opportunity->id ?? null,
'stage_id' => $stage->id ?? null,
]);
$activity->refresh();
$eventDispatcher->dispatch(new ActivityProspectAdded(
activity: $activity,
eventSource: 'match-crm-data'
));
if ($activity->getProspectName() !== null) {
$activity->setTitleFromCallData($this->call);
/** @var Participant $prospectParticipant */
$prospectParticipant = $activity
->participants()
->where(function (Builder $query) use ($activity) {
$query
->whereNull('user_id')
->orWhere('user_id', '!=', $activity->getUserId())
;
})
->first()
;
$activity->updateParticipantCrmData($crmObjects, $prospectParticipant);
}
$this->logMessage('Activity updated');
$this->triggerSummaryPushIfReady($activity, $eventDispatcher);
}
private function triggerSummaryPushIfReady(Activity $activity, Dispatcher $eventDispatcher): void
{
if (! $activity->hasTranscriptionId()) {
return;
}
if ($activity->hasProspectActivitySummaryLog()) {
$this->logMessage('Summary already sent to prospect, skipping summary push after CRM matching');
return;
}
$this->logMessage('Triggering summary push after CRM matching');
$eventDispatcher->dispatch(new TranscriptionAiSummaryReadyEvent($activity->getUuid()));
}
private function initialiseCrmService(Activity $activity, ProviderRegistry $providerRegistry): void
{
$this->team = $activity->getUser()->getTeam();
$crmProviderName = $this->team->getCrmConfiguration()->getProviderName();
$crmService = $providerRegistry->get($crmProviderName);
$crmService->setUser($this->team->getOwner());
$this->crmService = $crmService;
$this->logContext['team'] = $this->team->getSlug();
$this->logContext['team_id'] = $this->team->getId();
}
private function logMessage(string $message): void
{
$this->logger->info(sprintf('[MatchCrmData] %s', $message), $this->logContext);
}
}
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
37
1
35
64
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE name LIKE '%litify%'; # 1069, 994, 24993
SELECT * FROM users WHERE id = 25061;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 994;
SELECT * FROM crm_profiles WHERE user_id = 25061;
select * from crm_configurations where id = 834;
SELECT * FROM teams WHERE id = 882;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 882 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal
SELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations WHERE provider = 'hubspot' and crm_provider_id = 7270388;
SELECT * FROM contacts where crm_configuration_id = 834;
SELECT * FROM opportunities WHERE team_id = 933
# AND crm_provider_id IN ('20131586060','46017317898','52543911090','53451356564','54101251892','54323768459');
AND id IN (8482561,18352941,19042734,19232139,19445140,19472541);
SELECT * FROM opportunity_contacts
WHERE opportunity_id IN (8482561,18352941,19042734,19232139,19445140,19472541);
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 485; #
SELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
select crm.provider, l.* from leads l join crm_configurations crm on l.crm_configuration_id = crm.id
where crm.provider NOT IN ('salesforce', 'integration-app', 'bullhorn', 'copper')
# and l.converted_at IS NOT NULL
;
# [PASSWORD_DOTS]
SELECT * FROM activities a WHERE type IN ('email-inbound', 'email-outbound')
and opportunity_id IS NULL
order by id desc;
SELECT * FROM teams WHERE id = 604; # 598
SELECT * FROM activities WHERE id = 74410828; # [EMAIL]
SELECT * FROM accounts WHERE id = 20068382;
SELECT * FROM accounts WHERE id = 35186038;
SELECT * FROM contacts WHERE team_id = 852 and updated_at > '2026-01-23 12:30:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 559 and sa.provider = 'hubspot';
SELECT * FROM activities WHERE uuid_to_bin('cb6342b6-a183-401c-b0af-ede92b2ae763') = uuid;
select * from sidekick_settings where team_id = 781;
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 26651871; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 7562435;
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8420347; # opflit 2100
SELECT * FROM crm_layouts WHERE crm_configuration_id = 711;
SELECT * FROM activities where crm_configuration_id = 711 and crm_provider_id IS NULL
and is_internal = 0 and status = 'completed'
order by id desc;
SELECT * FROM crm_layout_entities
WHERE crm_layout_id IN (2352, 2353);
;
SELECT * FROM crm_configurations where provider = 'hubspot' and id = 530;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 556 and sa.provider = 'hubspot';
SELECT * FROM activities WHERE uuid_to_bin('c6ca4b22-7738-4563-a95d-b8a9598924ae') = uuid;
SELECT * FROM activities WHERE uuid_to_bin('442abb2b-28bd-4be8-9c25-19e9bf02766d') = uuid;
select * from contacts
where crm_configuration_id = 530
and crm_provider_id = 872252;
select * from activities where crm_configuration_id = 530
and user_id = 14343 and type like '%softphone%'
and created_at between '2026-01-28 15:00:00' and '2026-01-28 15:10:00';
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 25666868; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8646335; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id IN (5933397);
SELECT t.name, t.id, t.owner_id, c.id, c.provider, c.crm_base_url FROM teams t
JOIN crm_configurations c ON t.id = c.team_id
WHERE t.status = 'active';
SELECT * FROM teams where id = 1091;
SELECT * FROM crm_configurations where team_id = 1091;
SELECT * FROM activity_providers where team_id = 1091;
SELECT * FROM activities where crm_configuration_id = 1024 and type IN ('softphone', 'softphone-outbound')
and provider NOT IN ('hubspot', 'aircall')
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by id desc;
SELECT * FROM teams WHERE name LIKE '%Leadventure%';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1091 and sa.provider = 'salesforce';
SELECT * FROM teams WHERE name LIKE '%Wilson%'; # 862, 812
SELECT * FROM teams where id = 862;
SELECT * FROM crm_configurations where team_id = 862;
SELECT * FROM activity_providers where team_id = 862;
SELECT * FROM activities where crm_configuration_id = 812 and type IN ('softphone', 'softphone-outbound')
and provider NOT IN ('hubspot', 'aircall')
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by id desc;
SELECT t.id, crm.id, crm.provider, ap.* FROM teams t
join crm_configurations crm on t.id = crm.team_id
join activity_providers ap on t.id = ap.team_id
where t.status = 'active' and ap.is_enabled = 1
and crm.provider = 'hubspot'
and ap.provider NOT IN ('hubspot', 'aircall', 'uploader', 'gong', 'twilio', 'zoom-bot', 'google-meet', 'ms-teams',
'outreach', 'close', 'ringcentral', 'dialpad', 'zoom-phone');
SELECT * FROM teams where id = 1068;
SELECT * FROM crm_configurations where team_id = 1068;
SELECT * FROM activity_providers where team_id = 1068;
SELECT * FROM activities a
where crm_configuration_id = 993 and type IN ('softphone', 'softphone-outbound')
and a.provider NOT IN ('hubspot', 'uploader', 'gong', 'twilio', 'google-meet', 'ms-teams','close'
)
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by a.id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1068 and sa.provider = 'hubspot';
# [PASSWORD_DOTS]
# [PASSWORD_DOTS]
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal , portalId: 6017093
SELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-06 00:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 834; # 882 - AnyVan , portalId: 5468262
SELECT * FROM contacts WHERE crm_configuration_id = 834 and updated_at > '2026-03-30 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE crm_configuration_id = 834 and updated_at > '2026-03-04 08:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 882 and sa.provider = 'hubspot';
select * from crm_layouts where crm_configuration_id = 834;
select * from crm_layout_entities where crm_layout_id = 2780;
select * from crm_fields where id IN (321153,321192,321193,321194);
SELECT * FROM opportunities WHERE crm_configuration_id = 834 and id = 10993426;
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 988; # 1057 - Teya (543ce4f4-168c-4571-91ea-5b35c253f06f) , portalId: 26651871
SELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1057 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations where id = 533; # 559 - Connectd , portalId: 6710988
SELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 801; # 852 - Rise Vision , portalId: 2700250
SELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-04 00:00:00' order by updated_at desc; # 6th last
SELECT * FROM crm_configurations where id = 962; # 1034 - evergrowth.io , portalId: 143180990
SELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 1037; # 1102 - Jibble , portalId: 6649755
SELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 8
SELECT * FROM crm_configurations where id = 1015; # 1049 - Travefy , portalId: 48904401
SELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 20
SELECT * FROM crm_configurations where id = 64; # 70 - SalaryFinance , portalId: 3404115
SELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 6th last
SELECT * FROM crm_configurations where id = 802; # 853 - Street Group , portalId: 7658438
SELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 10
SELECT * FROM crm_configurations where id = 872; # 921 - In Professional Development , portalId: 9238273
SELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 2
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 550; # 576 - SeedLegals , portalId: 3028661
SELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 989; # 1058 - rtaoutdoor.com , portalId: 22371204
SELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 896; # 946 - Mintago , portalId: 6621281
SELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 617; # 641 - PCS , portalId: 5244937
SELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-05 14:00:00' order by updated_at desc; # 7th
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 649; # 670 - Eventeny , portalId: 4492849
SELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; #
SELECT * FROM crm_configurations where id = 48; # 51 - CleanCloud , portalId: 4373137
SELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-03-04 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-02-09 08:00:00' order by updated_at desc;
select * from users where team_id = 51; # 7783
SELECT * FROM groups WHERE uuid_to_bin('8a8d2cb6-8b55-4fa3-8b5c-5f0e3d8de59a') = uuid; # 1130
select * from activity_searches where user_id = 7783;
select * from activity_search_filters where activity_search_id IN (32291, 32292);
SELECT asf.activity_search_id, asf.id, asf.value
FROM activity_search_filters asf
WHERE asf.filter = 'group_id'
AND asf.value IN (
SELECT CONCAT(
HEX(SUBSTR(uuid, 5, 4)), '-',
HEX(SUBSTR(uuid, 3, 2)), '-',
HEX(SUBSTR(uuid, 1, 2)), '-',
HEX(SUBSTR(uuid, 9, 2)), '-',
HEX(SUBSTR(uuid, 11))
)
FROM groups
WHERE deleted_at IS NOT NULL
);
SELECT * FROM crm_configurations where id = 272; # 290 - Bonham & Brook , portalId: 5705856
SELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-05 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; # 6th
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where provider = 'hubspot';
SELECT * FROM crm_configurations where id = 1056; # 1119 - Chromatic , portalId: 45602133
SELECT * FROM opportunities WHERE team_id = 1119 and remotely_created_at > '2026-02-01 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1119 and updated_at > '2026-02-09 09:00:00' order by updated_at desc; # null
# [PASSWORD_DOTS]
select * from contacts where crm_provider_id = '003Uu00000ojD4NIAU';
select
cp.*
# DISTINCT t.id
# cp.id, cp.user_id, t.id, cp.crm_configuration_id, cp.contact_fields
FROM crm_profiles cp
JOIN crm_configurations crm on crm.id = cp.crm_configuration_id
JOIN users u on u.id = cp.user_id
JOIN teams t ON t.id = crm.team_id
WHERE crm.provider = 'salesforce' and t.status = 'active'
and cp.archived_at IS NULL and u.deleted_at IS NULL
and t.id NOT IN (1093)
and t.id = 2
and cp.contact_fields IS NULL;
# and c.crm_provider_id = '003Uu00000ojD4NIAU';
SELECT * FROM users WHERE id = 26484;
SELECT * FROM crm_profiles WHERE user_id = 26484;
SELECT * FROM social_accounts WHERE sociable_id = 26484;
SELECT * FROM crm_configurations where provider = 'salesforce';
select * from users where id IN (10022, 10403);
select * from users where team_id IN (526);
select * from teams where id IN (526, 532);
select * from crm_configurations where id IN (500, 516);
select * from crm_profiles where crm_configuration_id IN (500, 516) and user_id IN (10022, 10403);
select * from contacts where crm_configuration_id IN (500, 516) and crm_provider_id = '003Uu00000ojD4NIAU';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 526 and sa.provider = 'salesforce';
select * from team_settings where team_id IN (526, 532);
select * from users where id IN (22824);
select * from crm_profiles where crm_configuration_id IN (1026);
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1093 and sa.provider = 'salesforce';
select * from teams where id = 1099;
select * from users where id = 29643
select * from activity_processing_states;
SELECT * FROM teams where name LIKE '%Fare%'; # 233
SELECT * FROM opportunities where crm_configuration_id = 215
# and crm_provider_id = 'oppo_ogESZf2P50nDrd1nGPvKDXeA6sSaTN5v51Lp4ayVzKR'
;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1088 and sa.provider = 'hubspot';
SELECT * FROM teams order by updated_at DESC
SELECT * FROM crm_configurations WHERE id = 1019; # SimpleConsign 1088 - no social account
select * from crm_configurations where provider = 'pipedrive';
select * from teams where id = 957;
select * from crm_configurations where id = 957;
SELECT * FROM teams WHERE name LIKE '%Prolific%'; # 544, 518, 10743
SELECT * FROM opportunities where crm_configuration_id = 518 order by id desc;
select * from users where team_id = 1; # 26726 - Gabriela Dureva
SELECT * FROM opportunities where user_id = 26726; # 16834447 - Prolific
select * from activities where user_id = 26726 order by id desc;
select * from contacts where crm_configuration_id = 1
and email IN ('[EMAIL]', '[EMAIL]'); # 2094416, 2093620
SELECT * FROM contacts WHERE id = 6284931;
SELECT p.* FROM activities a JOIN participants p ON a.id = p.activity_id
WHERE a.user_id = 26726 and p.lead_id IN (2094416, 2093620) and a.created_at > '2026-01-01 00:00:00' order by p.email;
select * from activities where id IN (75509259,75509261,75509261,75511034,75026464,75517602,75517605);
select * from crm_configurations where id = 1;
43801692-1aeb-32ce-acba-5b80a479701a
44c3c9cf-6f5e-75f3-8179-bc9f75dd2b1b
405975c0-b3d0-7aaa-821f-09d59cae6dd1
4caf848d-4bed-2299-b248-7788d41f9fca
49bedc3f-f196-eef3-89c3-dea6a3b4aa63
43420989-a09d-b8f8-9806-c8bbf7a02aac
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
SELECT * FROM activities WHERE id = 75461988;
SELECT * FROM activities WHERE uuid_to_bin('d6c5052e-e972-49e9-8912-26f2f7d6c5f6') = uuid;
select * from contacts where id = 17900517;
select * from contact_roles cr join crm_configurations crm on cr.crm_configuration_id = crm.id
where crm.provider != 'salesforce';
select * from users where id = 21047;
SELECT * FROM crm_configurations WHERE id = 892;
SELECT * FROM teams WHERE id = 942;
select * from opportunities where team_id = 942 order by updated_at desc;
select * from contacts where team_id = 942 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 942 and sa.provider = 'hubspot';
SELECT * FROM opportunities where team_id = 1 and crm_provider_id IN ('006Pq00000NeH6XIAV', '006Pq000007z8kdIAA'); # 10697889, 6621430
SELECT * FROM crm_configurations WHERE id = 1;
SELECT * FROM teams WHERE crm_id = 1;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select id, user_id, opportunity_fields from crm_profiles where crm_configuration_id = 1
SELECT * FROM opportunities where team_id = 1 order by updated_at desc; # 10697889, 6621430
select * from teams where id = 852;
select * from groups where id = 2286;
select * from sidekick_settings where team_id = 852;
select * from default_activity_types where team_id = 852;
SELECT cc.provider, cc.id, p.id, u.*
FROM users u
LEFT JOIN crm_profiles p ON u.id = p.user_id AND p.id IS NULL -- no profile
INNER JOIN teams t ON u.team_id = t.id AND t.status = 'active' -- team is active
INNER JOIN crm_configurations cc ON t.crm_id = cc.id
WHERE u.status = 1 AND u.deleted_at IS NULL
AND u.crm_required = 1
AND u.team_id = 1
ORDER BY u.team_id;
SELECT * FROM crm_profiles cp where cp.crm_configuration_id = 1 and cp.user_id IN (
18481
);
SELECT cc.provider, cc.id, p.id, u.*
FROM users u
LEFT JOIN crm_profiles p ON u.id = p.user_id
INNER JOIN teams t ON u.team_id = t.id AND t.status = 'active'
INNER JOIN crm_configurations cc ON t.crm_id = cc.id
WHERE u.status = 1
AND u.deleted_at IS NULL
AND u.crm_required = 1
# AND u.team_id = 1
AND p.id IS NULL -- Move this condition to WHERE clause
ORDER BY u.team_id;
SELECT * FROM opportunities WHERE id = 20002609;
select * from teams where id = 1122; # Velatir, 29953 - [EMAIL]
select * from crm_configurations where id = 1060;
select * from crm_layouts where crm_configuration_id = 1060;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 3596;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1122 and sa.provider = 'hubspot';
select * from opportunities where team_id = 1122 order by updated_at desc;
select * from crm_field_data where object_type = 'contact';
SELECT * FROM activities WHERE uuid_to_bin('374fc8ed-3315-4c9f-9b25-318b7fd2928f') = uuid; # 76584262
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 248 and sa.provider = 'salesforce';
SELECT * FROM crm_profiles where user_id = 24115; # 005QF000002CswMYAS
SELECT * FROM users where id = 24115;
SELECT * FROM accounts where id = 4002896;
SELECT * FROM teams WHERE name LIKE '%adswerve%';
SELECT * FROM opportunities where crm_configuration_id = 230 AND crm_provider_id IN ("0069N000003GIQ9QAO","0061r000019yGP9AAM","0066900001S2KWlAAN","0066900001TDpj2AAD","0066900001b8uEwAAI","0069N000001rQi0QAE","006QF00000KD40mYAD","006QF00000LzpRJYAZ","0069N000002uomtQAA","0069N000002xlMLQAY","0066900001NV6ubAAD","0061r00001HJp45AAD","006QF00000uTlUoYAK","006QF00000v0bZqYAI");
SELECT * FROM opportunities WHERE crm_configuration_id = 230 AND crm_provider_id = '0069N000003GIQ9QAO'; # 6272203
SELECT u.id, u.email, ac.name, a.* FROM activities a
JOIN users u ON a.user_id = u.id
JOIN accounts ac ON a.account_id = ac.id
WHERE
uuid_to_bin('e3269598-b562-44fb-b5e9-9d2694dc63e0') = a.uuid or
uuid_to_bin('66ddc3ab-4e15-45aa-af0c-248c1eece593') = a.uuid or
uuid_to_bin('826bd328-e1cc-4213-b8d8-572454cacc07') = a.uuid;
select * from users where id = 5825;
SELECT * FROM activities WHERE uuid_to_bin('e56aa2e8-231a-421b-ab1f-cb38ed2bf573') = uuid;
select * from activities where uuid_to_bin('91e13b2f-2d1b-45f8-b1fd-1141b6563782') = uuid;
19594, 862
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 862 and sa.provider = 'salesforce';
select * from automated_reports where id = 36;
select ar.frequency, r.*, ar.* from automated_report_results r
join automated_reports ar on r.report_id = ar.id
where ar.frequency != 'one_off';
select s.* from activity_searches s join users u ON s.user_id = u.id where u.team_id = 882;
select * from nudges n where n.activity_search_id
select * from teams where created_at > '2026-03-09';
SELECT * FROM crm_layouts WHERE crm_configuration_id = 1065; # 1065
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 3617;
select * from users where team_id = 1 and name like '%Lukas%'; # 7160
SELECT * FROM teams WHERE id = 575;
select * from opportunities where team_id = 575;
SELECT * FROM teams WHERE name LIKE '%Integrum ESG%'; # 1126, 1065,
select * from opportunities where team_id = 1126;
SELECT * FROM teams WHERE name LIKE '%Base%'; # 1125, 1063,
select * from opportunities where team_id = 1125;
select * from contacts c
where c.team_id = 882;
SELECT * FROM activities WHERE id = 76822967;
SELECT * FROM crm_profiles WHERE user_id = 15440;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 555;
SELECT * FROM crm_configurations WHERE id = 555;
SELECT * FROM users WHERE id = 15440; # team. 581, gr. 15440, pl. 3911, act. field 162182
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 581 and sa.provider = 'salesforce';
SELECT * FROM automated_report_results order by id desc;
select * from features;
select * from team_features where feature_id = 40;
select * from teams where id = 556;
select * from automated_reports;
where id = 54; # 4fdd41f6-dcf0-30d0-b339-7345381b6044 , ["pdf","podcast"]
SELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;
select * from automated_report_results order by id desc;
SELECT * FROM automated_report_results WHERE id = 1919;
select * from automated_report_results WHERE report_id = 54;
select * from opportunities where id = 7594349;
SELECT * FROM teams WHERE name LIKE '%Les%'; # 711, 692, 16067 - [EMAIL]
select * from playbooks where team_id = 711; # event 226147
SELECT * FROM playbook_categories WHERE playbook_id = 5515;
SELECT * FROM crm_fields WHERE crm_configuration_id = 692 and object_type = 'event';
SELECT * FROM crm_fields WHERE id = 226147;
SELECT * FROM crm_field_values WHERE crm_field_id = 226147;
SELECT * FROM crm_configurations WHERE id = 692;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 711 and sa.provider = 'salesforce';
SELECT * FROM crm_profiles cp JOIN users u on u.id = cp.user_id WHERE u.team_id = 711;
select * from leads;
select * from calendars;
SELECT
t.id AS team_id,
t.name,
LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1)) AS calendar_domain
FROM teams t
JOIN users u ON u.team_id = t.id
JOIN calendars c ON c.user_id = u.id AND c.status = 'active' AND c.calendar_provider_id LIKE '%@%'
LEFT JOIN team_domains td
ON td.team_id = t.id
AND td.deleted_at IS NULL
AND td.domain = LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1))
GROUP BY t.id, t.name, calendar_domain
ORDER BY t.name, calendar_domain;
select * from users u join calendars c on c.user_id = u.id
where u.team_id = 882;
select * from activities where id = 74049485; # team 563 crm 537
select * from activities where id = 73272382; # team 563 crm 537
select * from activities where id = 64400389; # team 563 crm 537
select * from activities where id = 58081273; # team 563 crm 537
select * from activities where id = 54520297; # team 563 crm 537
select * from participants where activity_id = 58081273;
select * from activities where crm_configuration_id = 537 and provider = 'aircall'
and account_id = 19003658 order by updated_at desc;
select * from contacts where crm_configuration_id = 537 and id = 35957759;
select * from accounts where crm_configuration_id = 537 and id = 19003658;
select * from automated_report_results where id = 1976;
select * from automated_reports where id = 583;
select * from activity_searches where id = 87714;
select * from activity_search_filters where activity_search_id = 87714;
SELECT * FROM activities WHERE uuid_to_bin('8827f672-202d-4162-9d04-73ff5f0566a9') = uuid
or uuid_to_bin('47842446-af51-4bcb-854f-cc6560290101') = uuid;
SELECT * FROM crm_configurations WHERE provider = 'hubspot';
select * from rate_limits;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions, folder
Component, folder
Acl, folder
ActionItems, folder
Activity
ActivityAnalytics
ActivitySearch
AiActivityType
AiAutomation
AiCallScoring
AskAnything
Dtos
Events
AskAnythingPromptService.php, class
HistoryService.php, class
AskJiminnyAi
AWS, folder
BillingManagement
Cache
CoachingFeedback
Country
CustomerApi
Database
Datadog
DateTime
DealInsights
DealRisks, folder
ElasticSearch
Eloquent, folder
Encoding, folder
Encryption, folder
ES, folder
Faker, folder
FeatureFlags, folder
FFMpeg, folder
FileSystem, folder
Gecko, folder
Gong, folder
GuzzleHttp, folder
KeyPoints, folder
Kiosk, folder
LanguageDetection, folder
LiveFeed, folder
Locks, folder
Math, folder
MediaPipeline, folder
MeetingBot, folder
MobileSettings, folder
Model, folder
Notification, folder
Nudge, folder
ParagraphBreaker, folder
ParticipantSpeech, folder
PartitionedCookie, folder...
|
[{"role":"AXButton","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":"master, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.040226065,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: master<br/>Some incoming commits are not fetched<br/>","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.8081782,"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":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"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 'AskJiminnyReportActivityServiceTest'","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 'AskJiminnyReportActivityServiceTest'","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":"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":"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":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.34973404,"top":0.12529927,"width":0.0076462766,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":4,"bounds":{"left":0.359375,"top":0.12529927,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.36901596,"top":0.123703115,"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.37632978,"top":0.123703115,"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\\Jobs\\Activity\\Import;\n\nuse Illuminate\\Bus\\Queueable;\nuse Illuminate\\Contracts\\Queue\\ShouldQueue;\nuse Illuminate\\Database\\Eloquent\\Builder;\nuse Illuminate\\Events\\Dispatcher;\nuse Illuminate\\Foundation\\Bus\\Dispatchable;\nuse Illuminate\\Queue\\InteractsWithQueue;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Component\\Utility\\Service\\ProviderRateLimiter;\nuse Jiminny\\Contracts\\Services\\Crm\\ServiceInterface;\nuse Jiminny\\DTO\\ImportCall\\Call;\nuse Jiminny\\Component\\TranscriptionSummary\\Events\\TranscriptionAiSummaryReadyEvent;\nuse Jiminny\\Events\\Activities\\AiAutomation\\ActivityProspectAdded;\nuse Jiminny\\Exceptions\\SocialAccountTokenInvalidException;\nuse Jiminny\\Models\\Activity;\nuse Jiminny\\Models\\Participant;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Repositories\\ActivityRepository;\nuse Jiminny\\Services\\Crm\\CrmObjectsResolver;\nuse Jiminny\\Services\\Crm\\ProspectSearchStrategyFactory;\nuse Jiminny\\Services\\Crm\\ProviderRegistry;\nuse Psr\\Log\\LoggerInterface;\n\nclass MatchCrmData implements ShouldQueue\n{\n use Dispatchable;\n use InteractsWithQueue;\n use Queueable;\n\n // AWS visibility timeout allows a maximum of 12 hours. This is 1 minute less.\n private const int MAX_DELAY = 43140;\n\n // Infrastructure allows max 3 retries (1 initial execution + 3 retries)\n public int $tries = 4;\n\n private Call $call;\n private int $activityId;\n private Team $team;\n private ServiceInterface $crmService;\n\n private LoggerInterface $logger;\n private array $logContext;\n\n public function __construct(Call $call, int $activityId)\n {\n $this->call = $call;\n $this->activityId = $activityId;\n\n $this->logContext = [\n 'activity_id' => $activityId,\n 'call_id' => $call->getCallId(),\n 'provider' => $call->getProvider(),\n ];\n\n $this->onQueue(Constants::QUEUE_DIALERS);\n }\n\n public function handle(\n CrmObjectsResolver $crmObjectsResolver,\n ProviderRegistry $providerRegistry,\n ProviderRateLimiter $rateLimiter,\n ActivityRepository $activityRepository,\n LoggerInterface $logger,\n Dispatcher $eventDispatcher,\n ): void {\n $this->logger = $logger;\n\n // Activity is already augmented with CRM data, no need to perform the same operation\n if ($this->call->isActivityUpdatedWithCrm()) {\n $this->logMessage('Skipping activity. Already updated with CRM data');\n\n return;\n }\n\n /** @var Activity $activity */\n $activity = $activityRepository->findById($this->activityId);\n\n try {\n $this->initialiseCrmService($activity, $providerRegistry);\n } catch (SocialAccountTokenInvalidException $exception) {\n $this->logMessage('Invalid token, retrying');\n $this->release(self::MAX_DELAY); // Try again tomorrow\n\n return;\n }\n\n $prospectSearchStrategy = ProspectSearchStrategyFactory::match($this->team);\n if ($prospectSearchStrategy->ignoreCrmMatchData()) {\n // Ignore any associated opportunity\n $this->logger->info('[MatchCrmData] Ignoring crm data because of prospect strategy', [\n 'activity_id' => $this->activityId,\n 'strategy' => get_class($prospectSearchStrategy),\n ]);\n\n return;\n }\n\n if (! $rateLimiter->canMakeRequest($activity->getCrm())) {\n $this->logMessage('Rate limit reached, retrying');\n $this->release($rateLimiter->requestAvailableIn($activity->getCrm()) + random_int(1, 60));\n\n return;\n }\n\n $this->logMessage('Resolving CRM objects');\n\n $crmObjects = $crmObjectsResolver->resolveFromCall($this->crmService, $this->call);\n $rateLimiter->incrementRequestCount($activity->getCrm());\n\n if (empty($crmObjects)) {\n $this->logMessage('Could not resolve CRM objects, retrying');\n $this->release(3600);\n\n return;\n }\n\n [$lead, $account, $opportunity, $contact, $stage] = $crmObjects;\n\n $activity->update([\n 'lead_id' => $lead->id ?? null,\n 'contact_id' => $contact->id ?? null,\n 'account_id' => $account->id ?? null,\n 'opportunity_id' => $opportunity->id ?? null,\n 'stage_id' => $stage->id ?? null,\n ]);\n\n $activity->refresh();\n\n $eventDispatcher->dispatch(new ActivityProspectAdded(\n activity: $activity,\n eventSource: 'match-crm-data'\n ));\n\n if ($activity->getProspectName() !== null) {\n $activity->setTitleFromCallData($this->call);\n\n /** @var Participant $prospectParticipant */\n $prospectParticipant = $activity\n ->participants()\n ->where(function (Builder $query) use ($activity) {\n $query\n ->whereNull('user_id')\n ->orWhere('user_id', '!=', $activity->getUserId())\n ;\n })\n ->first()\n ;\n\n $activity->updateParticipantCrmData($crmObjects, $prospectParticipant);\n }\n\n $this->logMessage('Activity updated');\n\n $this->triggerSummaryPushIfReady($activity, $eventDispatcher);\n }\n\n private function triggerSummaryPushIfReady(Activity $activity, Dispatcher $eventDispatcher): void\n {\n if (! $activity->hasTranscriptionId()) {\n return;\n }\n\n if ($activity->hasProspectActivitySummaryLog()) {\n $this->logMessage('Summary already sent to prospect, skipping summary push after CRM matching');\n\n return;\n }\n\n $this->logMessage('Triggering summary push after CRM matching');\n $eventDispatcher->dispatch(new TranscriptionAiSummaryReadyEvent($activity->getUuid()));\n }\n\n private function initialiseCrmService(Activity $activity, ProviderRegistry $providerRegistry): void\n {\n $this->team = $activity->getUser()->getTeam();\n $crmProviderName = $this->team->getCrmConfiguration()->getProviderName();\n\n $crmService = $providerRegistry->get($crmProviderName);\n $crmService->setUser($this->team->getOwner());\n $this->crmService = $crmService;\n\n $this->logContext['team'] = $this->team->getSlug();\n $this->logContext['team_id'] = $this->team->getId();\n }\n\n private function logMessage(string $message): void\n {\n $this->logger->info(sprintf('[MatchCrmData] %s', $message), $this->logContext);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Jobs\\Activity\\Import;\n\nuse Illuminate\\Bus\\Queueable;\nuse Illuminate\\Contracts\\Queue\\ShouldQueue;\nuse Illuminate\\Database\\Eloquent\\Builder;\nuse Illuminate\\Events\\Dispatcher;\nuse Illuminate\\Foundation\\Bus\\Dispatchable;\nuse Illuminate\\Queue\\InteractsWithQueue;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Component\\Utility\\Service\\ProviderRateLimiter;\nuse Jiminny\\Contracts\\Services\\Crm\\ServiceInterface;\nuse Jiminny\\DTO\\ImportCall\\Call;\nuse Jiminny\\Component\\TranscriptionSummary\\Events\\TranscriptionAiSummaryReadyEvent;\nuse Jiminny\\Events\\Activities\\AiAutomation\\ActivityProspectAdded;\nuse Jiminny\\Exceptions\\SocialAccountTokenInvalidException;\nuse Jiminny\\Models\\Activity;\nuse Jiminny\\Models\\Participant;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Repositories\\ActivityRepository;\nuse Jiminny\\Services\\Crm\\CrmObjectsResolver;\nuse Jiminny\\Services\\Crm\\ProspectSearchStrategyFactory;\nuse Jiminny\\Services\\Crm\\ProviderRegistry;\nuse Psr\\Log\\LoggerInterface;\n\nclass MatchCrmData implements ShouldQueue\n{\n use Dispatchable;\n use InteractsWithQueue;\n use Queueable;\n\n // AWS visibility timeout allows a maximum of 12 hours. This is 1 minute less.\n private const int MAX_DELAY = 43140;\n\n // Infrastructure allows max 3 retries (1 initial execution + 3 retries)\n public int $tries = 4;\n\n private Call $call;\n private int $activityId;\n private Team $team;\n private ServiceInterface $crmService;\n\n private LoggerInterface $logger;\n private array $logContext;\n\n public function __construct(Call $call, int $activityId)\n {\n $this->call = $call;\n $this->activityId = $activityId;\n\n $this->logContext = [\n 'activity_id' => $activityId,\n 'call_id' => $call->getCallId(),\n 'provider' => $call->getProvider(),\n ];\n\n $this->onQueue(Constants::QUEUE_DIALERS);\n }\n\n public function handle(\n CrmObjectsResolver $crmObjectsResolver,\n ProviderRegistry $providerRegistry,\n ProviderRateLimiter $rateLimiter,\n ActivityRepository $activityRepository,\n LoggerInterface $logger,\n Dispatcher $eventDispatcher,\n ): void {\n $this->logger = $logger;\n\n // Activity is already augmented with CRM data, no need to perform the same operation\n if ($this->call->isActivityUpdatedWithCrm()) {\n $this->logMessage('Skipping activity. Already updated with CRM data');\n\n return;\n }\n\n /** @var Activity $activity */\n $activity = $activityRepository->findById($this->activityId);\n\n try {\n $this->initialiseCrmService($activity, $providerRegistry);\n } catch (SocialAccountTokenInvalidException $exception) {\n $this->logMessage('Invalid token, retrying');\n $this->release(self::MAX_DELAY); // Try again tomorrow\n\n return;\n }\n\n $prospectSearchStrategy = ProspectSearchStrategyFactory::match($this->team);\n if ($prospectSearchStrategy->ignoreCrmMatchData()) {\n // Ignore any associated opportunity\n $this->logger->info('[MatchCrmData] Ignoring crm data because of prospect strategy', [\n 'activity_id' => $this->activityId,\n 'strategy' => get_class($prospectSearchStrategy),\n ]);\n\n return;\n }\n\n if (! $rateLimiter->canMakeRequest($activity->getCrm())) {\n $this->logMessage('Rate limit reached, retrying');\n $this->release($rateLimiter->requestAvailableIn($activity->getCrm()) + random_int(1, 60));\n\n return;\n }\n\n $this->logMessage('Resolving CRM objects');\n\n $crmObjects = $crmObjectsResolver->resolveFromCall($this->crmService, $this->call);\n $rateLimiter->incrementRequestCount($activity->getCrm());\n\n if (empty($crmObjects)) {\n $this->logMessage('Could not resolve CRM objects, retrying');\n $this->release(3600);\n\n return;\n }\n\n [$lead, $account, $opportunity, $contact, $stage] = $crmObjects;\n\n $activity->update([\n 'lead_id' => $lead->id ?? null,\n 'contact_id' => $contact->id ?? null,\n 'account_id' => $account->id ?? null,\n 'opportunity_id' => $opportunity->id ?? null,\n 'stage_id' => $stage->id ?? null,\n ]);\n\n $activity->refresh();\n\n $eventDispatcher->dispatch(new ActivityProspectAdded(\n activity: $activity,\n eventSource: 'match-crm-data'\n ));\n\n if ($activity->getProspectName() !== null) {\n $activity->setTitleFromCallData($this->call);\n\n /** @var Participant $prospectParticipant */\n $prospectParticipant = $activity\n ->participants()\n ->where(function (Builder $query) use ($activity) {\n $query\n ->whereNull('user_id')\n ->orWhere('user_id', '!=', $activity->getUserId())\n ;\n })\n ->first()\n ;\n\n $activity->updateParticipantCrmData($crmObjects, $prospectParticipant);\n }\n\n $this->logMessage('Activity updated');\n\n $this->triggerSummaryPushIfReady($activity, $eventDispatcher);\n }\n\n private function triggerSummaryPushIfReady(Activity $activity, Dispatcher $eventDispatcher): void\n {\n if (! $activity->hasTranscriptionId()) {\n return;\n }\n\n if ($activity->hasProspectActivitySummaryLog()) {\n $this->logMessage('Summary already sent to prospect, skipping summary push after CRM matching');\n\n return;\n }\n\n $this->logMessage('Triggering summary push after CRM matching');\n $eventDispatcher->dispatch(new TranscriptionAiSummaryReadyEvent($activity->getUuid()));\n }\n\n private function initialiseCrmService(Activity $activity, ProviderRegistry $providerRegistry): void\n {\n $this->team = $activity->getUser()->getTeam();\n $crmProviderName = $this->team->getCrmConfiguration()->getProviderName();\n\n $crmService = $providerRegistry->get($crmProviderName);\n $crmService->setUser($this->team->getOwner());\n $this->crmService = $crmService;\n\n $this->logContext['team'] = $this->team->getSlug();\n $this->logContext['team_id'] = $this->team->getId();\n }\n\n private function logMessage(string $message): void\n {\n $this->logger->info(sprintf('[MatchCrmData] %s', $message), $this->logContext);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.3849734,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.39361703,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.40458778,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.41323137,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.421875,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.43284574,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.44381648,"top":0.09896249,"width":0.024268618,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.47041222,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.48138297,"top":0.09896249,"width":0.029587766,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.6575798,"top":0.09896249,"width":0.02825798,"height":0.01915403},"on_screen":true,"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":"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":"AXStaticText","text":"37","depth":4,"bounds":{"left":0.62732714,"top":0.123703115,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6392952,"top":0.123703115,"width":0.00731383,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"35","depth":4,"bounds":{"left":0.64860374,"top":0.123703115,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"64","depth":4,"bounds":{"left":0.6609042,"top":0.123703115,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.67287236,"top":0.12210695,"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.68018615,"top":0.12210695,"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":"SELECT * FROM teams WHERE name LIKE '%litify%'; # 1069, 994, 24993\nSELECT * FROM users WHERE id = 25061;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 994;\nSELECT * FROM crm_profiles WHERE user_id = 25061;\n\nselect * from crm_configurations where id = 834;\nSELECT * FROM teams WHERE id = 882;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 882 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal\nSELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations WHERE provider = 'hubspot' and crm_provider_id = 7270388;\n\nSELECT * FROM contacts where crm_configuration_id = 834;\nSELECT * FROM opportunities WHERE team_id = 933\n# AND crm_provider_id IN ('20131586060','46017317898','52543911090','53451356564','54101251892','54323768459');\nAND id IN (8482561,18352941,19042734,19232139,19445140,19472541);\nSELECT * FROM opportunity_contacts\nWHERE opportunity_id IN (8482561,18352941,19042734,19232139,19445140,19472541);\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 485; #\nSELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\nselect crm.provider, l.* from leads l join crm_configurations crm on l.crm_configuration_id = crm.id\nwhere crm.provider NOT IN ('salesforce', 'integration-app', 'bullhorn', 'copper')\n# and l.converted_at IS NOT NULL\n;\n\n# ********************************************************************\nSELECT * FROM activities a WHERE type IN ('email-inbound', 'email-outbound')\nand opportunity_id IS NULL\norder by id desc;\n\nSELECT * FROM teams WHERE id = 604; # 598\nSELECT * FROM activities WHERE id = 74410828; # chelseaw@allvoices.co\nSELECT * FROM accounts WHERE id = 20068382;\nSELECT * FROM accounts WHERE id = 35186038;\n\nSELECT * FROM contacts WHERE team_id = 852 and updated_at > '2026-01-23 12:30:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 559 and sa.provider = 'hubspot';\n\nSELECT * FROM activities WHERE uuid_to_bin('cb6342b6-a183-401c-b0af-ede92b2ae763') = uuid;\nselect * from sidekick_settings where team_id = 781;\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 26651871; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 7562435;\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8420347; # opflit 2100\n\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 711;\nSELECT * FROM activities where crm_configuration_id = 711 and crm_provider_id IS NULL\nand is_internal = 0 and status = 'completed'\norder by id desc;\n\nSELECT * FROM crm_layout_entities\nWHERE crm_layout_id IN (2352, 2353);\n;\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and id = 530;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 556 and sa.provider = 'hubspot';\n\nSELECT * FROM activities WHERE uuid_to_bin('c6ca4b22-7738-4563-a95d-b8a9598924ae') = uuid;\nSELECT * FROM activities WHERE uuid_to_bin('442abb2b-28bd-4be8-9c25-19e9bf02766d') = uuid;\nselect * from contacts\nwhere crm_configuration_id = 530\nand crm_provider_id = 872252;\n\nselect * from activities where crm_configuration_id = 530\nand user_id = 14343 and type like '%softphone%'\nand created_at between '2026-01-28 15:00:00' and '2026-01-28 15:10:00';\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 25666868; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8646335; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id IN (5933397);\n\n\nSELECT t.name, t.id, t.owner_id, c.id, c.provider, c.crm_base_url FROM teams t\nJOIN crm_configurations c ON t.id = c.team_id\nWHERE t.status = 'active';\n\nSELECT * FROM teams where id = 1091;\nSELECT * FROM crm_configurations where team_id = 1091;\nSELECT * FROM activity_providers where team_id = 1091;\nSELECT * FROM activities where crm_configuration_id = 1024 and type IN ('softphone', 'softphone-outbound')\nand provider NOT IN ('hubspot', 'aircall')\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by id desc;\n\n\nSELECT * FROM teams WHERE name LIKE '%Leadventure%';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1091 and sa.provider = 'salesforce';\n\nSELECT * FROM teams WHERE name LIKE '%Wilson%'; # 862, 812\nSELECT * FROM teams where id = 862;\nSELECT * FROM crm_configurations where team_id = 862;\nSELECT * FROM activity_providers where team_id = 862;\nSELECT * FROM activities where crm_configuration_id = 812 and type IN ('softphone', 'softphone-outbound')\nand provider NOT IN ('hubspot', 'aircall')\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by id desc;\n\n\nSELECT t.id, crm.id, crm.provider, ap.* FROM teams t\njoin crm_configurations crm on t.id = crm.team_id\njoin activity_providers ap on t.id = ap.team_id\nwhere t.status = 'active' and ap.is_enabled = 1\nand crm.provider = 'hubspot'\nand ap.provider NOT IN ('hubspot', 'aircall', 'uploader', 'gong', 'twilio', 'zoom-bot', 'google-meet', 'ms-teams',\n 'outreach', 'close', 'ringcentral', 'dialpad', 'zoom-phone');\n\nSELECT * FROM teams where id = 1068;\nSELECT * FROM crm_configurations where team_id = 1068;\nSELECT * FROM activity_providers where team_id = 1068;\n\nSELECT * FROM activities a\nwhere crm_configuration_id = 993 and type IN ('softphone', 'softphone-outbound')\nand a.provider NOT IN ('hubspot', 'uploader', 'gong', 'twilio', 'google-meet', 'ms-teams','close'\n )\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by a.id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1068 and sa.provider = 'hubspot';\n\n# ********************************************************************\n# ********************************************************************\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal , portalId: 6017093\nSELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-06 00:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 834; # 882 - AnyVan , portalId: 5468262\nSELECT * FROM contacts WHERE crm_configuration_id = 834 and updated_at > '2026-03-30 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE crm_configuration_id = 834 and updated_at > '2026-03-04 08:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 882 and sa.provider = 'hubspot';\nselect * from crm_layouts where crm_configuration_id = 834;\nselect * from crm_layout_entities where crm_layout_id = 2780;\nselect * from crm_fields where id IN (321153,321192,321193,321194);\n\nSELECT * FROM opportunities WHERE crm_configuration_id = 834 and id = 10993426;\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 988; # 1057 - Teya (543ce4f4-168c-4571-91ea-5b35c253f06f) , portalId: 26651871\nSELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1057 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations where id = 533; # 559 - Connectd , portalId: 6710988\nSELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 801; # 852 - Rise Vision , portalId: 2700250\nSELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-04 00:00:00' order by updated_at desc; # 6th last\n\nSELECT * FROM crm_configurations where id = 962; # 1034 - evergrowth.io , portalId: 143180990\nSELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 1037; # 1102 - Jibble , portalId: 6649755\nSELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 8\n\nSELECT * FROM crm_configurations where id = 1015; # 1049 - Travefy , portalId: 48904401\nSELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 20\n\nSELECT * FROM crm_configurations where id = 64; # 70 - SalaryFinance , portalId: 3404115\nSELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 6th last\n\nSELECT * FROM crm_configurations where id = 802; # 853 - Street Group , portalId: 7658438\nSELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 10\n\nSELECT * FROM crm_configurations where id = 872; # 921 - In Professional Development , portalId: 9238273\nSELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 2\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 550; # 576 - SeedLegals , portalId: 3028661\nSELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 989; # 1058 - rtaoutdoor.com , portalId: 22371204\nSELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 896; # 946 - Mintago , portalId: 6621281\nSELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 617; # 641 - PCS , portalId: 5244937\nSELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-05 14:00:00' order by updated_at desc; # 7th\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 649; # 670 - Eventeny , portalId: 4492849\nSELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; #\n\nSELECT * FROM crm_configurations where id = 48; # 51 - CleanCloud , portalId: 4373137\nSELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-03-04 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-02-09 08:00:00' order by updated_at desc;\nselect * from users where team_id = 51; # 7783\nSELECT * FROM groups WHERE uuid_to_bin('8a8d2cb6-8b55-4fa3-8b5c-5f0e3d8de59a') = uuid; # 1130\nselect * from activity_searches where user_id = 7783;\nselect * from activity_search_filters where activity_search_id IN (32291, 32292);\n\nSELECT asf.activity_search_id, asf.id, asf.value\nFROM activity_search_filters asf\nWHERE asf.filter = 'group_id'\nAND asf.value IN (\n SELECT CONCAT(\n HEX(SUBSTR(uuid, 5, 4)), '-',\n HEX(SUBSTR(uuid, 3, 2)), '-',\n HEX(SUBSTR(uuid, 1, 2)), '-',\n HEX(SUBSTR(uuid, 9, 2)), '-',\n HEX(SUBSTR(uuid, 11))\n )\n FROM groups\n WHERE deleted_at IS NOT NULL\n);\n\nSELECT * FROM crm_configurations where id = 272; # 290 - Bonham & Brook , portalId: 5705856\nSELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-05 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; # 6th\n# ********************************************************************\nSELECT * FROM crm_configurations where provider = 'hubspot';\nSELECT * FROM crm_configurations where id = 1056; # 1119 - Chromatic , portalId: 45602133\nSELECT * FROM opportunities WHERE team_id = 1119 and remotely_created_at > '2026-02-01 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1119 and updated_at > '2026-02-09 09:00:00' order by updated_at desc; # null\n# ********************************************************************\n\nselect * from contacts where crm_provider_id = '003Uu00000ojD4NIAU';\nselect\n cp.*\n# DISTINCT t.id\n# cp.id, cp.user_id, t.id, cp.crm_configuration_id, cp.contact_fields\nFROM crm_profiles cp\nJOIN crm_configurations crm on crm.id = cp.crm_configuration_id\nJOIN users u on u.id = cp.user_id\nJOIN teams t ON t.id = crm.team_id\nWHERE crm.provider = 'salesforce' and t.status = 'active'\n and cp.archived_at IS NULL and u.deleted_at IS NULL\n and t.id NOT IN (1093)\n and t.id = 2\n and cp.contact_fields IS NULL;\n# and c.crm_provider_id = '003Uu00000ojD4NIAU';\n\nSELECT * FROM users WHERE id = 26484;\nSELECT * FROM crm_profiles WHERE user_id = 26484;\nSELECT * FROM social_accounts WHERE sociable_id = 26484;\nSELECT * FROM crm_configurations where provider = 'salesforce';\nselect * from users where id IN (10022, 10403);\nselect * from users where team_id IN (526);\nselect * from teams where id IN (526, 532);\nselect * from crm_configurations where id IN (500, 516);\nselect * from crm_profiles where crm_configuration_id IN (500, 516) and user_id IN (10022, 10403);\nselect * from contacts where crm_configuration_id IN (500, 516) and crm_provider_id = '003Uu00000ojD4NIAU';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 526 and sa.provider = 'salesforce';\nselect * from team_settings where team_id IN (526, 532);\n\nselect * from users where id IN (22824);\nselect * from crm_profiles where crm_configuration_id IN (1026);\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1093 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1099;\nselect * from users where id = 29643\n\nselect * from activity_processing_states;\n\nSELECT * FROM teams where name LIKE '%Fare%'; # 233\nSELECT * FROM opportunities where crm_configuration_id = 215\n# and crm_provider_id = 'oppo_ogESZf2P50nDrd1nGPvKDXeA6sSaTN5v51Lp4ayVzKR'\n;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1088 and sa.provider = 'hubspot';\n\nSELECT * FROM teams order by updated_at DESC\nSELECT * FROM crm_configurations WHERE id = 1019; # SimpleConsign 1088 - no social account\n\nselect * from crm_configurations where provider = 'pipedrive';\n\nselect * from teams where id = 957;\nselect * from crm_configurations where id = 957;\n\nSELECT * FROM teams WHERE name LIKE '%Prolific%'; # 544, 518, 10743\nSELECT * FROM opportunities where crm_configuration_id = 518 order by id desc;\n\nselect * from users where team_id = 1; # 26726 - Gabriela Dureva\nSELECT * FROM opportunities where user_id = 26726; # 16834447 - Prolific\nselect * from activities where user_id = 26726 order by id desc;\nselect * from contacts where crm_configuration_id = 1\nand email IN ('charlotte.ward@prolific.com', 'frankie.bryant@prolific.com'); # 2094416, 2093620\nSELECT * FROM contacts WHERE id = 6284931;\n\nSELECT p.* FROM activities a JOIN participants p ON a.id = p.activity_id\nWHERE a.user_id = 26726 and p.lead_id IN (2094416, 2093620) and a.created_at > '2026-01-01 00:00:00' order by p.email;\n\nselect * from activities where id IN (75509259,75509261,75509261,75511034,75026464,75517602,75517605);\nselect * from crm_configurations where id = 1;\n\n43801692-1aeb-32ce-acba-5b80a479701a\n44c3c9cf-6f5e-75f3-8179-bc9f75dd2b1b\n405975c0-b3d0-7aaa-821f-09d59cae6dd1\n4caf848d-4bed-2299-b248-7788d41f9fca\n49bedc3f-f196-eef3-89c3-dea6a3b4aa63\n43420989-a09d-b8f8-9806-c8bbf7a02aac\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nSELECT * FROM activities WHERE id = 75461988;\n\nSELECT * FROM activities WHERE uuid_to_bin('d6c5052e-e972-49e9-8912-26f2f7d6c5f6') = uuid;\n\nselect * from contacts where id = 17900517;\n\nselect * from contact_roles cr join crm_configurations crm on cr.crm_configuration_id = crm.id\nwhere crm.provider != 'salesforce';\n\nselect * from users where id = 21047;\nSELECT * FROM crm_configurations WHERE id = 892;\nSELECT * FROM teams WHERE id = 942;\nselect * from opportunities where team_id = 942 order by updated_at desc;\nselect * from contacts where team_id = 942 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 942 and sa.provider = 'hubspot';\n\nSELECT * FROM opportunities where team_id = 1 and crm_provider_id IN ('006Pq00000NeH6XIAV', '006Pq000007z8kdIAA'); # 10697889, 6621430\nSELECT * FROM crm_configurations WHERE id = 1;\nSELECT * FROM teams WHERE crm_id = 1;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect id, user_id, opportunity_fields from crm_profiles where crm_configuration_id = 1\nSELECT * FROM opportunities where team_id = 1 order by updated_at desc; # 10697889, 6621430\n\nselect * from teams where id = 852;\nselect * from groups where id = 2286;\nselect * from sidekick_settings where team_id = 852;\nselect * from default_activity_types where team_id = 852;\n\n\nSELECT cc.provider, cc.id, p.id, u.*\nFROM users u\nLEFT JOIN crm_profiles p ON u.id = p.user_id AND p.id IS NULL -- no profile\nINNER JOIN teams t ON u.team_id = t.id AND t.status = 'active' -- team is active\nINNER JOIN crm_configurations cc ON t.crm_id = cc.id\nWHERE u.status = 1 AND u.deleted_at IS NULL\nAND u.crm_required = 1\nAND u.team_id = 1\nORDER BY u.team_id;\n\nSELECT * FROM crm_profiles cp where cp.crm_configuration_id = 1 and cp.user_id IN (\n18481\n );\n\nSELECT cc.provider, cc.id, p.id, u.*\nFROM users u\nLEFT JOIN crm_profiles p ON u.id = p.user_id\nINNER JOIN teams t ON u.team_id = t.id AND t.status = 'active'\nINNER JOIN crm_configurations cc ON t.crm_id = cc.id\nWHERE u.status = 1\n AND u.deleted_at IS NULL\n AND u.crm_required = 1\n# AND u.team_id = 1\n AND p.id IS NULL -- Move this condition to WHERE clause\nORDER BY u.team_id;\n\nSELECT * FROM opportunities WHERE id = 20002609;\nselect * from teams where id = 1122; # Velatir, 29953 - christian@velatir.com\nselect * from crm_configurations where id = 1060;\nselect * from crm_layouts where crm_configuration_id = 1060;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 3596;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1122 and sa.provider = 'hubspot';\nselect * from opportunities where team_id = 1122 order by updated_at desc;\n\nselect * from crm_field_data where object_type = 'contact';\n\nSELECT * FROM activities WHERE uuid_to_bin('374fc8ed-3315-4c9f-9b25-318b7fd2928f') = uuid; # 76584262\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 248 and sa.provider = 'salesforce';\n\nSELECT * FROM crm_profiles where user_id = 24115; # 005QF000002CswMYAS\nSELECT * FROM users where id = 24115;\nSELECT * FROM accounts where id = 4002896;\nSELECT * FROM teams WHERE name LIKE '%adswerve%';\nSELECT * FROM opportunities where crm_configuration_id = 230 AND crm_provider_id IN (\"0069N000003GIQ9QAO\",\"0061r000019yGP9AAM\",\"0066900001S2KWlAAN\",\"0066900001TDpj2AAD\",\"0066900001b8uEwAAI\",\"0069N000001rQi0QAE\",\"006QF00000KD40mYAD\",\"006QF00000LzpRJYAZ\",\"0069N000002uomtQAA\",\"0069N000002xlMLQAY\",\"0066900001NV6ubAAD\",\"0061r00001HJp45AAD\",\"006QF00000uTlUoYAK\",\"006QF00000v0bZqYAI\");\nSELECT * FROM opportunities WHERE crm_configuration_id = 230 AND crm_provider_id = '0069N000003GIQ9QAO'; # 6272203\n\nSELECT u.id, u.email, ac.name, a.* FROM activities a\nJOIN users u ON a.user_id = u.id\nJOIN accounts ac ON a.account_id = ac.id\nWHERE\nuuid_to_bin('e3269598-b562-44fb-b5e9-9d2694dc63e0') = a.uuid or\nuuid_to_bin('66ddc3ab-4e15-45aa-af0c-248c1eece593') = a.uuid or\nuuid_to_bin('826bd328-e1cc-4213-b8d8-572454cacc07') = a.uuid;\n\nselect * from users where id = 5825;\nSELECT * FROM activities WHERE uuid_to_bin('e56aa2e8-231a-421b-ab1f-cb38ed2bf573') = uuid;\n\nselect * from activities where uuid_to_bin('91e13b2f-2d1b-45f8-b1fd-1141b6563782') = uuid;\n19594, 862\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 862 and sa.provider = 'salesforce';\n\nselect * from automated_reports where id = 36;\nselect ar.frequency, r.*, ar.* from automated_report_results r\njoin automated_reports ar on r.report_id = ar.id\nwhere ar.frequency != 'one_off';\n\nselect s.* from activity_searches s join users u ON s.user_id = u.id where u.team_id = 882;\nselect * from nudges n where n.activity_search_id\n\nselect * from teams where created_at > '2026-03-09';\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 1065; # 1065\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 3617;\n\nselect * from users where team_id = 1 and name like '%Lukas%'; # 7160\n\nSELECT * FROM teams WHERE id = 575;\nselect * from opportunities where team_id = 575;\nSELECT * FROM teams WHERE name LIKE '%Integrum ESG%'; # 1126, 1065,\nselect * from opportunities where team_id = 1126;\nSELECT * FROM teams WHERE name LIKE '%Base%'; # 1125, 1063,\nselect * from opportunities where team_id = 1125;\nselect * from contacts c\nwhere c.team_id = 882;\n\nSELECT * FROM activities WHERE id = 76822967;\nSELECT * FROM crm_profiles WHERE user_id = 15440;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 555;\nSELECT * FROM crm_configurations WHERE id = 555;\nSELECT * FROM users WHERE id = 15440; # team. 581, gr. 15440, pl. 3911, act. field 162182\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 581 and sa.provider = 'salesforce';\n\nSELECT * FROM automated_report_results order by id desc;\n\nselect * from features;\nselect * from team_features where feature_id = 40;\n\nselect * from teams where id = 556;\n\nselect * from automated_reports;\nwhere id = 54; # 4fdd41f6-dcf0-30d0-b339-7345381b6044 , [\"pdf\",\"podcast\"]\nSELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;\nselect * from automated_report_results order by id desc;\nSELECT * FROM automated_report_results WHERE id = 1919;\n\nselect * from automated_report_results WHERE report_id = 54;\n\nselect * from opportunities where id = 7594349;\n\nSELECT * FROM teams WHERE name LIKE '%Les%'; # 711, 692, 16067 - jiminnyintegration@lesmills.com\nselect * from playbooks where team_id = 711; # event 226147\nSELECT * FROM playbook_categories WHERE playbook_id = 5515;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 692 and object_type = 'event';\nSELECT * FROM crm_fields WHERE id = 226147;\nSELECT * FROM crm_field_values WHERE crm_field_id = 226147;\n\nSELECT * FROM crm_configurations WHERE id = 692;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 711 and sa.provider = 'salesforce';\n\nSELECT * FROM crm_profiles cp JOIN users u on u.id = cp.user_id WHERE u.team_id = 711;\n\nselect * from leads;\n\nselect * from calendars;\n\nSELECT\n t.id AS team_id,\n t.name,\n LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1)) AS calendar_domain\nFROM teams t\nJOIN users u ON u.team_id = t.id\nJOIN calendars c ON c.user_id = u.id AND c.status = 'active' AND c.calendar_provider_id LIKE '%@%'\nLEFT JOIN team_domains td\n ON td.team_id = t.id\n AND td.deleted_at IS NULL\n AND td.domain = LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1))\nGROUP BY t.id, t.name, calendar_domain\nORDER BY t.name, calendar_domain;\n\nselect * from users u join calendars c on c.user_id = u.id\nwhere u.team_id = 882;\n\n\nselect * from activities where id = 74049485; # team 563 crm 537\nselect * from activities where id = 73272382; # team 563 crm 537\nselect * from activities where id = 64400389; # team 563 crm 537\nselect * from activities where id = 58081273; # team 563 crm 537\nselect * from activities where id = 54520297; # team 563 crm 537\nselect * from participants where activity_id = 58081273;\n\nselect * from activities where crm_configuration_id = 537 and provider = 'aircall'\nand account_id = 19003658 order by updated_at desc;\n\nselect * from contacts where crm_configuration_id = 537 and id = 35957759;\nselect * from accounts where crm_configuration_id = 537 and id = 19003658;\n\nselect * from automated_report_results where id = 1976;\nselect * from automated_reports where id = 583;\nselect * from activity_searches where id = 87714;\nselect * from activity_search_filters where activity_search_id = 87714;\n\nSELECT * FROM activities WHERE uuid_to_bin('8827f672-202d-4162-9d04-73ff5f0566a9') = uuid\nor uuid_to_bin('47842446-af51-4bcb-854f-cc6560290101') = uuid;\n\nSELECT * FROM crm_configurations WHERE provider = 'hubspot';\nselect * from rate_limits;","depth":4,"on_screen":true,"value":"SELECT * FROM teams WHERE name LIKE '%litify%'; # 1069, 994, 24993\nSELECT * FROM users WHERE id = 25061;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 994;\nSELECT * FROM crm_profiles WHERE user_id = 25061;\n\nselect * from crm_configurations where id = 834;\nSELECT * FROM teams WHERE id = 882;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 882 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal\nSELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations WHERE provider = 'hubspot' and crm_provider_id = 7270388;\n\nSELECT * FROM contacts where crm_configuration_id = 834;\nSELECT * FROM opportunities WHERE team_id = 933\n# AND crm_provider_id IN ('20131586060','46017317898','52543911090','53451356564','54101251892','54323768459');\nAND id IN (8482561,18352941,19042734,19232139,19445140,19472541);\nSELECT * FROM opportunity_contacts\nWHERE opportunity_id IN (8482561,18352941,19042734,19232139,19445140,19472541);\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 485; #\nSELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\nselect crm.provider, l.* from leads l join crm_configurations crm on l.crm_configuration_id = crm.id\nwhere crm.provider NOT IN ('salesforce', 'integration-app', 'bullhorn', 'copper')\n# and l.converted_at IS NOT NULL\n;\n\n# ********************************************************************\nSELECT * FROM activities a WHERE type IN ('email-inbound', 'email-outbound')\nand opportunity_id IS NULL\norder by id desc;\n\nSELECT * FROM teams WHERE id = 604; # 598\nSELECT * FROM activities WHERE id = 74410828; # chelseaw@allvoices.co\nSELECT * FROM accounts WHERE id = 20068382;\nSELECT * FROM accounts WHERE id = 35186038;\n\nSELECT * FROM contacts WHERE team_id = 852 and updated_at > '2026-01-23 12:30:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 559 and sa.provider = 'hubspot';\n\nSELECT * FROM activities WHERE uuid_to_bin('cb6342b6-a183-401c-b0af-ede92b2ae763') = uuid;\nselect * from sidekick_settings where team_id = 781;\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 26651871; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 7562435;\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8420347; # opflit 2100\n\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 711;\nSELECT * FROM activities where crm_configuration_id = 711 and crm_provider_id IS NULL\nand is_internal = 0 and status = 'completed'\norder by id desc;\n\nSELECT * FROM crm_layout_entities\nWHERE crm_layout_id IN (2352, 2353);\n;\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and id = 530;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 556 and sa.provider = 'hubspot';\n\nSELECT * FROM activities WHERE uuid_to_bin('c6ca4b22-7738-4563-a95d-b8a9598924ae') = uuid;\nSELECT * FROM activities WHERE uuid_to_bin('442abb2b-28bd-4be8-9c25-19e9bf02766d') = uuid;\nselect * from contacts\nwhere crm_configuration_id = 530\nand crm_provider_id = 872252;\n\nselect * from activities where crm_configuration_id = 530\nand user_id = 14343 and type like '%softphone%'\nand created_at between '2026-01-28 15:00:00' and '2026-01-28 15:10:00';\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 25666868; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8646335; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id IN (5933397);\n\n\nSELECT t.name, t.id, t.owner_id, c.id, c.provider, c.crm_base_url FROM teams t\nJOIN crm_configurations c ON t.id = c.team_id\nWHERE t.status = 'active';\n\nSELECT * FROM teams where id = 1091;\nSELECT * FROM crm_configurations where team_id = 1091;\nSELECT * FROM activity_providers where team_id = 1091;\nSELECT * FROM activities where crm_configuration_id = 1024 and type IN ('softphone', 'softphone-outbound')\nand provider NOT IN ('hubspot', 'aircall')\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by id desc;\n\n\nSELECT * FROM teams WHERE name LIKE '%Leadventure%';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1091 and sa.provider = 'salesforce';\n\nSELECT * FROM teams WHERE name LIKE '%Wilson%'; # 862, 812\nSELECT * FROM teams where id = 862;\nSELECT * FROM crm_configurations where team_id = 862;\nSELECT * FROM activity_providers where team_id = 862;\nSELECT * FROM activities where crm_configuration_id = 812 and type IN ('softphone', 'softphone-outbound')\nand provider NOT IN ('hubspot', 'aircall')\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by id desc;\n\n\nSELECT t.id, crm.id, crm.provider, ap.* FROM teams t\njoin crm_configurations crm on t.id = crm.team_id\njoin activity_providers ap on t.id = ap.team_id\nwhere t.status = 'active' and ap.is_enabled = 1\nand crm.provider = 'hubspot'\nand ap.provider NOT IN ('hubspot', 'aircall', 'uploader', 'gong', 'twilio', 'zoom-bot', 'google-meet', 'ms-teams',\n 'outreach', 'close', 'ringcentral', 'dialpad', 'zoom-phone');\n\nSELECT * FROM teams where id = 1068;\nSELECT * FROM crm_configurations where team_id = 1068;\nSELECT * FROM activity_providers where team_id = 1068;\n\nSELECT * FROM activities a\nwhere crm_configuration_id = 993 and type IN ('softphone', 'softphone-outbound')\nand a.provider NOT IN ('hubspot', 'uploader', 'gong', 'twilio', 'google-meet', 'ms-teams','close'\n )\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by a.id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1068 and sa.provider = 'hubspot';\n\n# ********************************************************************\n# ********************************************************************\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal , portalId: 6017093\nSELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-06 00:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 834; # 882 - AnyVan , portalId: 5468262\nSELECT * FROM contacts WHERE crm_configuration_id = 834 and updated_at > '2026-03-30 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE crm_configuration_id = 834 and updated_at > '2026-03-04 08:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 882 and sa.provider = 'hubspot';\nselect * from crm_layouts where crm_configuration_id = 834;\nselect * from crm_layout_entities where crm_layout_id = 2780;\nselect * from crm_fields where id IN (321153,321192,321193,321194);\n\nSELECT * FROM opportunities WHERE crm_configuration_id = 834 and id = 10993426;\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 988; # 1057 - Teya (543ce4f4-168c-4571-91ea-5b35c253f06f) , portalId: 26651871\nSELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1057 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations where id = 533; # 559 - Connectd , portalId: 6710988\nSELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 801; # 852 - Rise Vision , portalId: 2700250\nSELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-04 00:00:00' order by updated_at desc; # 6th last\n\nSELECT * FROM crm_configurations where id = 962; # 1034 - evergrowth.io , portalId: 143180990\nSELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 1037; # 1102 - Jibble , portalId: 6649755\nSELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 8\n\nSELECT * FROM crm_configurations where id = 1015; # 1049 - Travefy , portalId: 48904401\nSELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 20\n\nSELECT * FROM crm_configurations where id = 64; # 70 - SalaryFinance , portalId: 3404115\nSELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 6th last\n\nSELECT * FROM crm_configurations where id = 802; # 853 - Street Group , portalId: 7658438\nSELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 10\n\nSELECT * FROM crm_configurations where id = 872; # 921 - In Professional Development , portalId: 9238273\nSELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 2\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 550; # 576 - SeedLegals , portalId: 3028661\nSELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 989; # 1058 - rtaoutdoor.com , portalId: 22371204\nSELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 896; # 946 - Mintago , portalId: 6621281\nSELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 617; # 641 - PCS , portalId: 5244937\nSELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-05 14:00:00' order by updated_at desc; # 7th\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 649; # 670 - Eventeny , portalId: 4492849\nSELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; #\n\nSELECT * FROM crm_configurations where id = 48; # 51 - CleanCloud , portalId: 4373137\nSELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-03-04 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-02-09 08:00:00' order by updated_at desc;\nselect * from users where team_id = 51; # 7783\nSELECT * FROM groups WHERE uuid_to_bin('8a8d2cb6-8b55-4fa3-8b5c-5f0e3d8de59a') = uuid; # 1130\nselect * from activity_searches where user_id = 7783;\nselect * from activity_search_filters where activity_search_id IN (32291, 32292);\n\nSELECT asf.activity_search_id, asf.id, asf.value\nFROM activity_search_filters asf\nWHERE asf.filter = 'group_id'\nAND asf.value IN (\n SELECT CONCAT(\n HEX(SUBSTR(uuid, 5, 4)), '-',\n HEX(SUBSTR(uuid, 3, 2)), '-',\n HEX(SUBSTR(uuid, 1, 2)), '-',\n HEX(SUBSTR(uuid, 9, 2)), '-',\n HEX(SUBSTR(uuid, 11))\n )\n FROM groups\n WHERE deleted_at IS NOT NULL\n);\n\nSELECT * FROM crm_configurations where id = 272; # 290 - Bonham & Brook , portalId: 5705856\nSELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-05 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; # 6th\n# ********************************************************************\nSELECT * FROM crm_configurations where provider = 'hubspot';\nSELECT * FROM crm_configurations where id = 1056; # 1119 - Chromatic , portalId: 45602133\nSELECT * FROM opportunities WHERE team_id = 1119 and remotely_created_at > '2026-02-01 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1119 and updated_at > '2026-02-09 09:00:00' order by updated_at desc; # null\n# ********************************************************************\n\nselect * from contacts where crm_provider_id = '003Uu00000ojD4NIAU';\nselect\n cp.*\n# DISTINCT t.id\n# cp.id, cp.user_id, t.id, cp.crm_configuration_id, cp.contact_fields\nFROM crm_profiles cp\nJOIN crm_configurations crm on crm.id = cp.crm_configuration_id\nJOIN users u on u.id = cp.user_id\nJOIN teams t ON t.id = crm.team_id\nWHERE crm.provider = 'salesforce' and t.status = 'active'\n and cp.archived_at IS NULL and u.deleted_at IS NULL\n and t.id NOT IN (1093)\n and t.id = 2\n and cp.contact_fields IS NULL;\n# and c.crm_provider_id = '003Uu00000ojD4NIAU';\n\nSELECT * FROM users WHERE id = 26484;\nSELECT * FROM crm_profiles WHERE user_id = 26484;\nSELECT * FROM social_accounts WHERE sociable_id = 26484;\nSELECT * FROM crm_configurations where provider = 'salesforce';\nselect * from users where id IN (10022, 10403);\nselect * from users where team_id IN (526);\nselect * from teams where id IN (526, 532);\nselect * from crm_configurations where id IN (500, 516);\nselect * from crm_profiles where crm_configuration_id IN (500, 516) and user_id IN (10022, 10403);\nselect * from contacts where crm_configuration_id IN (500, 516) and crm_provider_id = '003Uu00000ojD4NIAU';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 526 and sa.provider = 'salesforce';\nselect * from team_settings where team_id IN (526, 532);\n\nselect * from users where id IN (22824);\nselect * from crm_profiles where crm_configuration_id IN (1026);\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1093 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1099;\nselect * from users where id = 29643\n\nselect * from activity_processing_states;\n\nSELECT * FROM teams where name LIKE '%Fare%'; # 233\nSELECT * FROM opportunities where crm_configuration_id = 215\n# and crm_provider_id = 'oppo_ogESZf2P50nDrd1nGPvKDXeA6sSaTN5v51Lp4ayVzKR'\n;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1088 and sa.provider = 'hubspot';\n\nSELECT * FROM teams order by updated_at DESC\nSELECT * FROM crm_configurations WHERE id = 1019; # SimpleConsign 1088 - no social account\n\nselect * from crm_configurations where provider = 'pipedrive';\n\nselect * from teams where id = 957;\nselect * from crm_configurations where id = 957;\n\nSELECT * FROM teams WHERE name LIKE '%Prolific%'; # 544, 518, 10743\nSELECT * FROM opportunities where crm_configuration_id = 518 order by id desc;\n\nselect * from users where team_id = 1; # 26726 - Gabriela Dureva\nSELECT * FROM opportunities where user_id = 26726; # 16834447 - Prolific\nselect * from activities where user_id = 26726 order by id desc;\nselect * from contacts where crm_configuration_id = 1\nand email IN ('charlotte.ward@prolific.com', 'frankie.bryant@prolific.com'); # 2094416, 2093620\nSELECT * FROM contacts WHERE id = 6284931;\n\nSELECT p.* FROM activities a JOIN participants p ON a.id = p.activity_id\nWHERE a.user_id = 26726 and p.lead_id IN (2094416, 2093620) and a.created_at > '2026-01-01 00:00:00' order by p.email;\n\nselect * from activities where id IN (75509259,75509261,75509261,75511034,75026464,75517602,75517605);\nselect * from crm_configurations where id = 1;\n\n43801692-1aeb-32ce-acba-5b80a479701a\n44c3c9cf-6f5e-75f3-8179-bc9f75dd2b1b\n405975c0-b3d0-7aaa-821f-09d59cae6dd1\n4caf848d-4bed-2299-b248-7788d41f9fca\n49bedc3f-f196-eef3-89c3-dea6a3b4aa63\n43420989-a09d-b8f8-9806-c8bbf7a02aac\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nSELECT * FROM activities WHERE id = 75461988;\n\nSELECT * FROM activities WHERE uuid_to_bin('d6c5052e-e972-49e9-8912-26f2f7d6c5f6') = uuid;\n\nselect * from contacts where id = 17900517;\n\nselect * from contact_roles cr join crm_configurations crm on cr.crm_configuration_id = crm.id\nwhere crm.provider != 'salesforce';\n\nselect * from users where id = 21047;\nSELECT * FROM crm_configurations WHERE id = 892;\nSELECT * FROM teams WHERE id = 942;\nselect * from opportunities where team_id = 942 order by updated_at desc;\nselect * from contacts where team_id = 942 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 942 and sa.provider = 'hubspot';\n\nSELECT * FROM opportunities where team_id = 1 and crm_provider_id IN ('006Pq00000NeH6XIAV', '006Pq000007z8kdIAA'); # 10697889, 6621430\nSELECT * FROM crm_configurations WHERE id = 1;\nSELECT * FROM teams WHERE crm_id = 1;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect id, user_id, opportunity_fields from crm_profiles where crm_configuration_id = 1\nSELECT * FROM opportunities where team_id = 1 order by updated_at desc; # 10697889, 6621430\n\nselect * from teams where id = 852;\nselect * from groups where id = 2286;\nselect * from sidekick_settings where team_id = 852;\nselect * from default_activity_types where team_id = 852;\n\n\nSELECT cc.provider, cc.id, p.id, u.*\nFROM users u\nLEFT JOIN crm_profiles p ON u.id = p.user_id AND p.id IS NULL -- no profile\nINNER JOIN teams t ON u.team_id = t.id AND t.status = 'active' -- team is active\nINNER JOIN crm_configurations cc ON t.crm_id = cc.id\nWHERE u.status = 1 AND u.deleted_at IS NULL\nAND u.crm_required = 1\nAND u.team_id = 1\nORDER BY u.team_id;\n\nSELECT * FROM crm_profiles cp where cp.crm_configuration_id = 1 and cp.user_id IN (\n18481\n );\n\nSELECT cc.provider, cc.id, p.id, u.*\nFROM users u\nLEFT JOIN crm_profiles p ON u.id = p.user_id\nINNER JOIN teams t ON u.team_id = t.id AND t.status = 'active'\nINNER JOIN crm_configurations cc ON t.crm_id = cc.id\nWHERE u.status = 1\n AND u.deleted_at IS NULL\n AND u.crm_required = 1\n# AND u.team_id = 1\n AND p.id IS NULL -- Move this condition to WHERE clause\nORDER BY u.team_id;\n\nSELECT * FROM opportunities WHERE id = 20002609;\nselect * from teams where id = 1122; # Velatir, 29953 - christian@velatir.com\nselect * from crm_configurations where id = 1060;\nselect * from crm_layouts where crm_configuration_id = 1060;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 3596;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1122 and sa.provider = 'hubspot';\nselect * from opportunities where team_id = 1122 order by updated_at desc;\n\nselect * from crm_field_data where object_type = 'contact';\n\nSELECT * FROM activities WHERE uuid_to_bin('374fc8ed-3315-4c9f-9b25-318b7fd2928f') = uuid; # 76584262\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 248 and sa.provider = 'salesforce';\n\nSELECT * FROM crm_profiles where user_id = 24115; # 005QF000002CswMYAS\nSELECT * FROM users where id = 24115;\nSELECT * FROM accounts where id = 4002896;\nSELECT * FROM teams WHERE name LIKE '%adswerve%';\nSELECT * FROM opportunities where crm_configuration_id = 230 AND crm_provider_id IN (\"0069N000003GIQ9QAO\",\"0061r000019yGP9AAM\",\"0066900001S2KWlAAN\",\"0066900001TDpj2AAD\",\"0066900001b8uEwAAI\",\"0069N000001rQi0QAE\",\"006QF00000KD40mYAD\",\"006QF00000LzpRJYAZ\",\"0069N000002uomtQAA\",\"0069N000002xlMLQAY\",\"0066900001NV6ubAAD\",\"0061r00001HJp45AAD\",\"006QF00000uTlUoYAK\",\"006QF00000v0bZqYAI\");\nSELECT * FROM opportunities WHERE crm_configuration_id = 230 AND crm_provider_id = '0069N000003GIQ9QAO'; # 6272203\n\nSELECT u.id, u.email, ac.name, a.* FROM activities a\nJOIN users u ON a.user_id = u.id\nJOIN accounts ac ON a.account_id = ac.id\nWHERE\nuuid_to_bin('e3269598-b562-44fb-b5e9-9d2694dc63e0') = a.uuid or\nuuid_to_bin('66ddc3ab-4e15-45aa-af0c-248c1eece593') = a.uuid or\nuuid_to_bin('826bd328-e1cc-4213-b8d8-572454cacc07') = a.uuid;\n\nselect * from users where id = 5825;\nSELECT * FROM activities WHERE uuid_to_bin('e56aa2e8-231a-421b-ab1f-cb38ed2bf573') = uuid;\n\nselect * from activities where uuid_to_bin('91e13b2f-2d1b-45f8-b1fd-1141b6563782') = uuid;\n19594, 862\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 862 and sa.provider = 'salesforce';\n\nselect * from automated_reports where id = 36;\nselect ar.frequency, r.*, ar.* from automated_report_results r\njoin automated_reports ar on r.report_id = ar.id\nwhere ar.frequency != 'one_off';\n\nselect s.* from activity_searches s join users u ON s.user_id = u.id where u.team_id = 882;\nselect * from nudges n where n.activity_search_id\n\nselect * from teams where created_at > '2026-03-09';\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 1065; # 1065\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 3617;\n\nselect * from users where team_id = 1 and name like '%Lukas%'; # 7160\n\nSELECT * FROM teams WHERE id = 575;\nselect * from opportunities where team_id = 575;\nSELECT * FROM teams WHERE name LIKE '%Integrum ESG%'; # 1126, 1065,\nselect * from opportunities where team_id = 1126;\nSELECT * FROM teams WHERE name LIKE '%Base%'; # 1125, 1063,\nselect * from opportunities where team_id = 1125;\nselect * from contacts c\nwhere c.team_id = 882;\n\nSELECT * FROM activities WHERE id = 76822967;\nSELECT * FROM crm_profiles WHERE user_id = 15440;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 555;\nSELECT * FROM crm_configurations WHERE id = 555;\nSELECT * FROM users WHERE id = 15440; # team. 581, gr. 15440, pl. 3911, act. field 162182\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 581 and sa.provider = 'salesforce';\n\nSELECT * FROM automated_report_results order by id desc;\n\nselect * from features;\nselect * from team_features where feature_id = 40;\n\nselect * from teams where id = 556;\n\nselect * from automated_reports;\nwhere id = 54; # 4fdd41f6-dcf0-30d0-b339-7345381b6044 , [\"pdf\",\"podcast\"]\nSELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;\nselect * from automated_report_results order by id desc;\nSELECT * FROM automated_report_results WHERE id = 1919;\n\nselect * from automated_report_results WHERE report_id = 54;\n\nselect * from opportunities where id = 7594349;\n\nSELECT * FROM teams WHERE name LIKE '%Les%'; # 711, 692, 16067 - jiminnyintegration@lesmills.com\nselect * from playbooks where team_id = 711; # event 226147\nSELECT * FROM playbook_categories WHERE playbook_id = 5515;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 692 and object_type = 'event';\nSELECT * FROM crm_fields WHERE id = 226147;\nSELECT * FROM crm_field_values WHERE crm_field_id = 226147;\n\nSELECT * FROM crm_configurations WHERE id = 692;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 711 and sa.provider = 'salesforce';\n\nSELECT * FROM crm_profiles cp JOIN users u on u.id = cp.user_id WHERE u.team_id = 711;\n\nselect * from leads;\n\nselect * from calendars;\n\nSELECT\n t.id AS team_id,\n t.name,\n LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1)) AS calendar_domain\nFROM teams t\nJOIN users u ON u.team_id = t.id\nJOIN calendars c ON c.user_id = u.id AND c.status = 'active' AND c.calendar_provider_id LIKE '%@%'\nLEFT JOIN team_domains td\n ON td.team_id = t.id\n AND td.deleted_at IS NULL\n AND td.domain = LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1))\nGROUP BY t.id, t.name, calendar_domain\nORDER BY t.name, calendar_domain;\n\nselect * from users u join calendars c on c.user_id = u.id\nwhere u.team_id = 882;\n\n\nselect * from activities where id = 74049485; # team 563 crm 537\nselect * from activities where id = 73272382; # team 563 crm 537\nselect * from activities where id = 64400389; # team 563 crm 537\nselect * from activities where id = 58081273; # team 563 crm 537\nselect * from activities where id = 54520297; # team 563 crm 537\nselect * from participants where activity_id = 58081273;\n\nselect * from activities where crm_configuration_id = 537 and provider = 'aircall'\nand account_id = 19003658 order by updated_at desc;\n\nselect * from contacts where crm_configuration_id = 537 and id = 35957759;\nselect * from accounts where crm_configuration_id = 537 and id = 19003658;\n\nselect * from automated_report_results where id = 1976;\nselect * from automated_reports where id = 583;\nselect * from activity_searches where id = 87714;\nselect * from activity_search_filters where activity_search_id = 87714;\n\nSELECT * FROM activities WHERE uuid_to_bin('8827f672-202d-4162-9d04-73ff5f0566a9') = uuid\nor uuid_to_bin('47842446-af51-4bcb-854f-cc6560290101') = uuid;\n\nSELECT * FROM crm_configurations WHERE provider = 'hubspot';\nselect * from rate_limits;","role_description":"text entry area","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,"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","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","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","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events","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","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","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","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","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"}]...
|
-9149430032589935601
|
2218600175241672269
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
7
2
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Jobs\Activity\Import;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Events\Dispatcher;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Jiminny\Component\Queue\Constants;
use Jiminny\Component\Utility\Service\ProviderRateLimiter;
use Jiminny\Contracts\Services\Crm\ServiceInterface;
use Jiminny\DTO\ImportCall\Call;
use Jiminny\Component\TranscriptionSummary\Events\TranscriptionAiSummaryReadyEvent;
use Jiminny\Events\Activities\AiAutomation\ActivityProspectAdded;
use Jiminny\Exceptions\SocialAccountTokenInvalidException;
use Jiminny\Models\Activity;
use Jiminny\Models\Participant;
use Jiminny\Models\Team;
use Jiminny\Repositories\ActivityRepository;
use Jiminny\Services\Crm\CrmObjectsResolver;
use Jiminny\Services\Crm\ProspectSearchStrategyFactory;
use Jiminny\Services\Crm\ProviderRegistry;
use Psr\Log\LoggerInterface;
class MatchCrmData implements ShouldQueue
{
use Dispatchable;
use InteractsWithQueue;
use Queueable;
// AWS visibility timeout allows a maximum of 12 hours. This is 1 minute less.
private const int MAX_DELAY = 43140;
// Infrastructure allows max 3 retries (1 initial execution + 3 retries)
public int $tries = 4;
private Call $call;
private int $activityId;
private Team $team;
private ServiceInterface $crmService;
private LoggerInterface $logger;
private array $logContext;
public function __construct(Call $call, int $activityId)
{
$this->call = $call;
$this->activityId = $activityId;
$this->logContext = [
'activity_id' => $activityId,
'call_id' => $call->getCallId(),
'provider' => $call->getProvider(),
];
$this->onQueue(Constants::QUEUE_DIALERS);
}
public function handle(
CrmObjectsResolver $crmObjectsResolver,
ProviderRegistry $providerRegistry,
ProviderRateLimiter $rateLimiter,
ActivityRepository $activityRepository,
LoggerInterface $logger,
Dispatcher $eventDispatcher,
): void {
$this->logger = $logger;
// Activity is already augmented with CRM data, no need to perform the same operation
if ($this->call->isActivityUpdatedWithCrm()) {
$this->logMessage('Skipping activity. Already updated with CRM data');
return;
}
/** @var Activity $activity */
$activity = $activityRepository->findById($this->activityId);
try {
$this->initialiseCrmService($activity, $providerRegistry);
} catch (SocialAccountTokenInvalidException $exception) {
$this->logMessage('Invalid token, retrying');
$this->release(self::MAX_DELAY); // Try again tomorrow
return;
}
$prospectSearchStrategy = ProspectSearchStrategyFactory::match($this->team);
if ($prospectSearchStrategy->ignoreCrmMatchData()) {
// Ignore any associated opportunity
$this->logger->info('[MatchCrmData] Ignoring crm data because of prospect strategy', [
'activity_id' => $this->activityId,
'strategy' => get_class($prospectSearchStrategy),
]);
return;
}
if (! $rateLimiter->canMakeRequest($activity->getCrm())) {
$this->logMessage('Rate limit reached, retrying');
$this->release($rateLimiter->requestAvailableIn($activity->getCrm()) + random_int(1, 60));
return;
}
$this->logMessage('Resolving CRM objects');
$crmObjects = $crmObjectsResolver->resolveFromCall($this->crmService, $this->call);
$rateLimiter->incrementRequestCount($activity->getCrm());
if (empty($crmObjects)) {
$this->logMessage('Could not resolve CRM objects, retrying');
$this->release(3600);
return;
}
[$lead, $account, $opportunity, $contact, $stage] = $crmObjects;
$activity->update([
'lead_id' => $lead->id ?? null,
'contact_id' => $contact->id ?? null,
'account_id' => $account->id ?? null,
'opportunity_id' => $opportunity->id ?? null,
'stage_id' => $stage->id ?? null,
]);
$activity->refresh();
$eventDispatcher->dispatch(new ActivityProspectAdded(
activity: $activity,
eventSource: 'match-crm-data'
));
if ($activity->getProspectName() !== null) {
$activity->setTitleFromCallData($this->call);
/** @var Participant $prospectParticipant */
$prospectParticipant = $activity
->participants()
->where(function (Builder $query) use ($activity) {
$query
->whereNull('user_id')
->orWhere('user_id', '!=', $activity->getUserId())
;
})
->first()
;
$activity->updateParticipantCrmData($crmObjects, $prospectParticipant);
}
$this->logMessage('Activity updated');
$this->triggerSummaryPushIfReady($activity, $eventDispatcher);
}
private function triggerSummaryPushIfReady(Activity $activity, Dispatcher $eventDispatcher): void
{
if (! $activity->hasTranscriptionId()) {
return;
}
if ($activity->hasProspectActivitySummaryLog()) {
$this->logMessage('Summary already sent to prospect, skipping summary push after CRM matching');
return;
}
$this->logMessage('Triggering summary push after CRM matching');
$eventDispatcher->dispatch(new TranscriptionAiSummaryReadyEvent($activity->getUuid()));
}
private function initialiseCrmService(Activity $activity, ProviderRegistry $providerRegistry): void
{
$this->team = $activity->getUser()->getTeam();
$crmProviderName = $this->team->getCrmConfiguration()->getProviderName();
$crmService = $providerRegistry->get($crmProviderName);
$crmService->setUser($this->team->getOwner());
$this->crmService = $crmService;
$this->logContext['team'] = $this->team->getSlug();
$this->logContext['team_id'] = $this->team->getId();
}
private function logMessage(string $message): void
{
$this->logger->info(sprintf('[MatchCrmData] %s', $message), $this->logContext);
}
}
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
37
1
35
64
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE name LIKE '%litify%'; # 1069, 994, 24993
SELECT * FROM users WHERE id = 25061;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 994;
SELECT * FROM crm_profiles WHERE user_id = 25061;
select * from crm_configurations where id = 834;
SELECT * FROM teams WHERE id = 882;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 882 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal
SELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations WHERE provider = 'hubspot' and crm_provider_id = 7270388;
SELECT * FROM contacts where crm_configuration_id = 834;
SELECT * FROM opportunities WHERE team_id = 933
# AND crm_provider_id IN ('20131586060','46017317898','52543911090','53451356564','54101251892','54323768459');
AND id IN (8482561,18352941,19042734,19232139,19445140,19472541);
SELECT * FROM opportunity_contacts
WHERE opportunity_id IN (8482561,18352941,19042734,19232139,19445140,19472541);
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 485; #
SELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
select crm.provider, l.* from leads l join crm_configurations crm on l.crm_configuration_id = crm.id
where crm.provider NOT IN ('salesforce', 'integration-app', 'bullhorn', 'copper')
# and l.converted_at IS NOT NULL
;
# [PASSWORD_DOTS]
SELECT * FROM activities a WHERE type IN ('email-inbound', 'email-outbound')
and opportunity_id IS NULL
order by id desc;
SELECT * FROM teams WHERE id = 604; # 598
SELECT * FROM activities WHERE id = 74410828; # [EMAIL]
SELECT * FROM accounts WHERE id = 20068382;
SELECT * FROM accounts WHERE id = 35186038;
SELECT * FROM contacts WHERE team_id = 852 and updated_at > '2026-01-23 12:30:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 559 and sa.provider = 'hubspot';
SELECT * FROM activities WHERE uuid_to_bin('cb6342b6-a183-401c-b0af-ede92b2ae763') = uuid;
select * from sidekick_settings where team_id = 781;
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 26651871; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 7562435;
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8420347; # opflit 2100
SELECT * FROM crm_layouts WHERE crm_configuration_id = 711;
SELECT * FROM activities where crm_configuration_id = 711 and crm_provider_id IS NULL
and is_internal = 0 and status = 'completed'
order by id desc;
SELECT * FROM crm_layout_entities
WHERE crm_layout_id IN (2352, 2353);
;
SELECT * FROM crm_configurations where provider = 'hubspot' and id = 530;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 556 and sa.provider = 'hubspot';
SELECT * FROM activities WHERE uuid_to_bin('c6ca4b22-7738-4563-a95d-b8a9598924ae') = uuid;
SELECT * FROM activities WHERE uuid_to_bin('442abb2b-28bd-4be8-9c25-19e9bf02766d') = uuid;
select * from contacts
where crm_configuration_id = 530
and crm_provider_id = 872252;
select * from activities where crm_configuration_id = 530
and user_id = 14343 and type like '%softphone%'
and created_at between '2026-01-28 15:00:00' and '2026-01-28 15:10:00';
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 25666868; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8646335; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id IN (5933397);
SELECT t.name, t.id, t.owner_id, c.id, c.provider, c.crm_base_url FROM teams t
JOIN crm_configurations c ON t.id = c.team_id
WHERE t.status = 'active';
SELECT * FROM teams where id = 1091;
SELECT * FROM crm_configurations where team_id = 1091;
SELECT * FROM activity_providers where team_id = 1091;
SELECT * FROM activities where crm_configuration_id = 1024 and type IN ('softphone', 'softphone-outbound')
and provider NOT IN ('hubspot', 'aircall')
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by id desc;
SELECT * FROM teams WHERE name LIKE '%Leadventure%';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1091 and sa.provider = 'salesforce';
SELECT * FROM teams WHERE name LIKE '%Wilson%'; # 862, 812
SELECT * FROM teams where id = 862;
SELECT * FROM crm_configurations where team_id = 862;
SELECT * FROM activity_providers where team_id = 862;
SELECT * FROM activities where crm_configuration_id = 812 and type IN ('softphone', 'softphone-outbound')
and provider NOT IN ('hubspot', 'aircall')
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by id desc;
SELECT t.id, crm.id, crm.provider, ap.* FROM teams t
join crm_configurations crm on t.id = crm.team_id
join activity_providers ap on t.id = ap.team_id
where t.status = 'active' and ap.is_enabled = 1
and crm.provider = 'hubspot'
and ap.provider NOT IN ('hubspot', 'aircall', 'uploader', 'gong', 'twilio', 'zoom-bot', 'google-meet', 'ms-teams',
'outreach', 'close', 'ringcentral', 'dialpad', 'zoom-phone');
SELECT * FROM teams where id = 1068;
SELECT * FROM crm_configurations where team_id = 1068;
SELECT * FROM activity_providers where team_id = 1068;
SELECT * FROM activities a
where crm_configuration_id = 993 and type IN ('softphone', 'softphone-outbound')
and a.provider NOT IN ('hubspot', 'uploader', 'gong', 'twilio', 'google-meet', 'ms-teams','close'
)
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by a.id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1068 and sa.provider = 'hubspot';
# [PASSWORD_DOTS]
# [PASSWORD_DOTS]
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal , portalId: 6017093
SELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-06 00:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 834; # 882 - AnyVan , portalId: 5468262
SELECT * FROM contacts WHERE crm_configuration_id = 834 and updated_at > '2026-03-30 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE crm_configuration_id = 834 and updated_at > '2026-03-04 08:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 882 and sa.provider = 'hubspot';
select * from crm_layouts where crm_configuration_id = 834;
select * from crm_layout_entities where crm_layout_id = 2780;
select * from crm_fields where id IN (321153,321192,321193,321194);
SELECT * FROM opportunities WHERE crm_configuration_id = 834 and id = 10993426;
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 988; # 1057 - Teya (543ce4f4-168c-4571-91ea-5b35c253f06f) , portalId: 26651871
SELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1057 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations where id = 533; # 559 - Connectd , portalId: 6710988
SELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 801; # 852 - Rise Vision , portalId: 2700250
SELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-04 00:00:00' order by updated_at desc; # 6th last
SELECT * FROM crm_configurations where id = 962; # 1034 - evergrowth.io , portalId: 143180990
SELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 1037; # 1102 - Jibble , portalId: 6649755
SELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 8
SELECT * FROM crm_configurations where id = 1015; # 1049 - Travefy , portalId: 48904401
SELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 20
SELECT * FROM crm_configurations where id = 64; # 70 - SalaryFinance , portalId: 3404115
SELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 6th last
SELECT * FROM crm_configurations where id = 802; # 853 - Street Group , portalId: 7658438
SELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 10
SELECT * FROM crm_configurations where id = 872; # 921 - In Professional Development , portalId: 9238273
SELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 2
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 550; # 576 - SeedLegals , portalId: 3028661
SELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 989; # 1058 - rtaoutdoor.com , portalId: 22371204
SELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 896; # 946 - Mintago , portalId: 6621281
SELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 617; # 641 - PCS , portalId: 5244937
SELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-05 14:00:00' order by updated_at desc; # 7th
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 649; # 670 - Eventeny , portalId: 4492849
SELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; #
SELECT * FROM crm_configurations where id = 48; # 51 - CleanCloud , portalId: 4373137
SELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-03-04 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-02-09 08:00:00' order by updated_at desc;
select * from users where team_id = 51; # 7783
SELECT * FROM groups WHERE uuid_to_bin('8a8d2cb6-8b55-4fa3-8b5c-5f0e3d8de59a') = uuid; # 1130
select * from activity_searches where user_id = 7783;
select * from activity_search_filters where activity_search_id IN (32291, 32292);
SELECT asf.activity_search_id, asf.id, asf.value
FROM activity_search_filters asf
WHERE asf.filter = 'group_id'
AND asf.value IN (
SELECT CONCAT(
HEX(SUBSTR(uuid, 5, 4)), '-',
HEX(SUBSTR(uuid, 3, 2)), '-',
HEX(SUBSTR(uuid, 1, 2)), '-',
HEX(SUBSTR(uuid, 9, 2)), '-',
HEX(SUBSTR(uuid, 11))
)
FROM groups
WHERE deleted_at IS NOT NULL
);
SELECT * FROM crm_configurations where id = 272; # 290 - Bonham & Brook , portalId: 5705856
SELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-05 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; # 6th
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where provider = 'hubspot';
SELECT * FROM crm_configurations where id = 1056; # 1119 - Chromatic , portalId: 45602133
SELECT * FROM opportunities WHERE team_id = 1119 and remotely_created_at > '2026-02-01 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1119 and updated_at > '2026-02-09 09:00:00' order by updated_at desc; # null
# [PASSWORD_DOTS]
select * from contacts where crm_provider_id = '003Uu00000ojD4NIAU';
select
cp.*
# DISTINCT t.id
# cp.id, cp.user_id, t.id, cp.crm_configuration_id, cp.contact_fields
FROM crm_profiles cp
JOIN crm_configurations crm on crm.id = cp.crm_configuration_id
JOIN users u on u.id = cp.user_id
JOIN teams t ON t.id = crm.team_id
WHERE crm.provider = 'salesforce' and t.status = 'active'
and cp.archived_at IS NULL and u.deleted_at IS NULL
and t.id NOT IN (1093)
and t.id = 2
and cp.contact_fields IS NULL;
# and c.crm_provider_id = '003Uu00000ojD4NIAU';
SELECT * FROM users WHERE id = 26484;
SELECT * FROM crm_profiles WHERE user_id = 26484;
SELECT * FROM social_accounts WHERE sociable_id = 26484;
SELECT * FROM crm_configurations where provider = 'salesforce';
select * from users where id IN (10022, 10403);
select * from users where team_id IN (526);
select * from teams where id IN (526, 532);
select * from crm_configurations where id IN (500, 516);
select * from crm_profiles where crm_configuration_id IN (500, 516) and user_id IN (10022, 10403);
select * from contacts where crm_configuration_id IN (500, 516) and crm_provider_id = '003Uu00000ojD4NIAU';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 526 and sa.provider = 'salesforce';
select * from team_settings where team_id IN (526, 532);
select * from users where id IN (22824);
select * from crm_profiles where crm_configuration_id IN (1026);
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1093 and sa.provider = 'salesforce';
select * from teams where id = 1099;
select * from users where id = 29643
select * from activity_processing_states;
SELECT * FROM teams where name LIKE '%Fare%'; # 233
SELECT * FROM opportunities where crm_configuration_id = 215
# and crm_provider_id = 'oppo_ogESZf2P50nDrd1nGPvKDXeA6sSaTN5v51Lp4ayVzKR'
;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1088 and sa.provider = 'hubspot';
SELECT * FROM teams order by updated_at DESC
SELECT * FROM crm_configurations WHERE id = 1019; # SimpleConsign 1088 - no social account
select * from crm_configurations where provider = 'pipedrive';
select * from teams where id = 957;
select * from crm_configurations where id = 957;
SELECT * FROM teams WHERE name LIKE '%Prolific%'; # 544, 518, 10743
SELECT * FROM opportunities where crm_configuration_id = 518 order by id desc;
select * from users where team_id = 1; # 26726 - Gabriela Dureva
SELECT * FROM opportunities where user_id = 26726; # 16834447 - Prolific
select * from activities where user_id = 26726 order by id desc;
select * from contacts where crm_configuration_id = 1
and email IN ('[EMAIL]', '[EMAIL]'); # 2094416, 2093620
SELECT * FROM contacts WHERE id = 6284931;
SELECT p.* FROM activities a JOIN participants p ON a.id = p.activity_id
WHERE a.user_id = 26726 and p.lead_id IN (2094416, 2093620) and a.created_at > '2026-01-01 00:00:00' order by p.email;
select * from activities where id IN (75509259,75509261,75509261,75511034,75026464,75517602,75517605);
select * from crm_configurations where id = 1;
43801692-1aeb-32ce-acba-5b80a479701a
44c3c9cf-6f5e-75f3-8179-bc9f75dd2b1b
405975c0-b3d0-7aaa-821f-09d59cae6dd1
4caf848d-4bed-2299-b248-7788d41f9fca
49bedc3f-f196-eef3-89c3-dea6a3b4aa63
43420989-a09d-b8f8-9806-c8bbf7a02aac
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
SELECT * FROM activities WHERE id = 75461988;
SELECT * FROM activities WHERE uuid_to_bin('d6c5052e-e972-49e9-8912-26f2f7d6c5f6') = uuid;
select * from contacts where id = 17900517;
select * from contact_roles cr join crm_configurations crm on cr.crm_configuration_id = crm.id
where crm.provider != 'salesforce';
select * from users where id = 21047;
SELECT * FROM crm_configurations WHERE id = 892;
SELECT * FROM teams WHERE id = 942;
select * from opportunities where team_id = 942 order by updated_at desc;
select * from contacts where team_id = 942 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 942 and sa.provider = 'hubspot';
SELECT * FROM opportunities where team_id = 1 and crm_provider_id IN ('006Pq00000NeH6XIAV', '006Pq000007z8kdIAA'); # 10697889, 6621430
SELECT * FROM crm_configurations WHERE id = 1;
SELECT * FROM teams WHERE crm_id = 1;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select id, user_id, opportunity_fields from crm_profiles where crm_configuration_id = 1
SELECT * FROM opportunities where team_id = 1 order by updated_at desc; # 10697889, 6621430
select * from teams where id = 852;
select * from groups where id = 2286;
select * from sidekick_settings where team_id = 852;
select * from default_activity_types where team_id = 852;
SELECT cc.provider, cc.id, p.id, u.*
FROM users u
LEFT JOIN crm_profiles p ON u.id = p.user_id AND p.id IS NULL -- no profile
INNER JOIN teams t ON u.team_id = t.id AND t.status = 'active' -- team is active
INNER JOIN crm_configurations cc ON t.crm_id = cc.id
WHERE u.status = 1 AND u.deleted_at IS NULL
AND u.crm_required = 1
AND u.team_id = 1
ORDER BY u.team_id;
SELECT * FROM crm_profiles cp where cp.crm_configuration_id = 1 and cp.user_id IN (
18481
);
SELECT cc.provider, cc.id, p.id, u.*
FROM users u
LEFT JOIN crm_profiles p ON u.id = p.user_id
INNER JOIN teams t ON u.team_id = t.id AND t.status = 'active'
INNER JOIN crm_configurations cc ON t.crm_id = cc.id
WHERE u.status = 1
AND u.deleted_at IS NULL
AND u.crm_required = 1
# AND u.team_id = 1
AND p.id IS NULL -- Move this condition to WHERE clause
ORDER BY u.team_id;
SELECT * FROM opportunities WHERE id = 20002609;
select * from teams where id = 1122; # Velatir, 29953 - [EMAIL]
select * from crm_configurations where id = 1060;
select * from crm_layouts where crm_configuration_id = 1060;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 3596;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1122 and sa.provider = 'hubspot';
select * from opportunities where team_id = 1122 order by updated_at desc;
select * from crm_field_data where object_type = 'contact';
SELECT * FROM activities WHERE uuid_to_bin('374fc8ed-3315-4c9f-9b25-318b7fd2928f') = uuid; # 76584262
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 248 and sa.provider = 'salesforce';
SELECT * FROM crm_profiles where user_id = 24115; # 005QF000002CswMYAS
SELECT * FROM users where id = 24115;
SELECT * FROM accounts where id = 4002896;
SELECT * FROM teams WHERE name LIKE '%adswerve%';
SELECT * FROM opportunities where crm_configuration_id = 230 AND crm_provider_id IN ("0069N000003GIQ9QAO","0061r000019yGP9AAM","0066900001S2KWlAAN","0066900001TDpj2AAD","0066900001b8uEwAAI","0069N000001rQi0QAE","006QF00000KD40mYAD","006QF00000LzpRJYAZ","0069N000002uomtQAA","0069N000002xlMLQAY","0066900001NV6ubAAD","0061r00001HJp45AAD","006QF00000uTlUoYAK","006QF00000v0bZqYAI");
SELECT * FROM opportunities WHERE crm_configuration_id = 230 AND crm_provider_id = '0069N000003GIQ9QAO'; # 6272203
SELECT u.id, u.email, ac.name, a.* FROM activities a
JOIN users u ON a.user_id = u.id
JOIN accounts ac ON a.account_id = ac.id
WHERE
uuid_to_bin('e3269598-b562-44fb-b5e9-9d2694dc63e0') = a.uuid or
uuid_to_bin('66ddc3ab-4e15-45aa-af0c-248c1eece593') = a.uuid or
uuid_to_bin('826bd328-e1cc-4213-b8d8-572454cacc07') = a.uuid;
select * from users where id = 5825;
SELECT * FROM activities WHERE uuid_to_bin('e56aa2e8-231a-421b-ab1f-cb38ed2bf573') = uuid;
select * from activities where uuid_to_bin('91e13b2f-2d1b-45f8-b1fd-1141b6563782') = uuid;
19594, 862
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 862 and sa.provider = 'salesforce';
select * from automated_reports where id = 36;
select ar.frequency, r.*, ar.* from automated_report_results r
join automated_reports ar on r.report_id = ar.id
where ar.frequency != 'one_off';
select s.* from activity_searches s join users u ON s.user_id = u.id where u.team_id = 882;
select * from nudges n where n.activity_search_id
select * from teams where created_at > '2026-03-09';
SELECT * FROM crm_layouts WHERE crm_configuration_id = 1065; # 1065
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 3617;
select * from users where team_id = 1 and name like '%Lukas%'; # 7160
SELECT * FROM teams WHERE id = 575;
select * from opportunities where team_id = 575;
SELECT * FROM teams WHERE name LIKE '%Integrum ESG%'; # 1126, 1065,
select * from opportunities where team_id = 1126;
SELECT * FROM teams WHERE name LIKE '%Base%'; # 1125, 1063,
select * from opportunities where team_id = 1125;
select * from contacts c
where c.team_id = 882;
SELECT * FROM activities WHERE id = 76822967;
SELECT * FROM crm_profiles WHERE user_id = 15440;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 555;
SELECT * FROM crm_configurations WHERE id = 555;
SELECT * FROM users WHERE id = 15440; # team. 581, gr. 15440, pl. 3911, act. field 162182
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 581 and sa.provider = 'salesforce';
SELECT * FROM automated_report_results order by id desc;
select * from features;
select * from team_features where feature_id = 40;
select * from teams where id = 556;
select * from automated_reports;
where id = 54; # 4fdd41f6-dcf0-30d0-b339-7345381b6044 , ["pdf","podcast"]
SELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;
select * from automated_report_results order by id desc;
SELECT * FROM automated_report_results WHERE id = 1919;
select * from automated_report_results WHERE report_id = 54;
select * from opportunities where id = 7594349;
SELECT * FROM teams WHERE name LIKE '%Les%'; # 711, 692, 16067 - [EMAIL]
select * from playbooks where team_id = 711; # event 226147
SELECT * FROM playbook_categories WHERE playbook_id = 5515;
SELECT * FROM crm_fields WHERE crm_configuration_id = 692 and object_type = 'event';
SELECT * FROM crm_fields WHERE id = 226147;
SELECT * FROM crm_field_values WHERE crm_field_id = 226147;
SELECT * FROM crm_configurations WHERE id = 692;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 711 and sa.provider = 'salesforce';
SELECT * FROM crm_profiles cp JOIN users u on u.id = cp.user_id WHERE u.team_id = 711;
select * from leads;
select * from calendars;
SELECT
t.id AS team_id,
t.name,
LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1)) AS calendar_domain
FROM teams t
JOIN users u ON u.team_id = t.id
JOIN calendars c ON c.user_id = u.id AND c.status = 'active' AND c.calendar_provider_id LIKE '%@%'
LEFT JOIN team_domains td
ON td.team_id = t.id
AND td.deleted_at IS NULL
AND td.domain = LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1))
GROUP BY t.id, t.name, calendar_domain
ORDER BY t.name, calendar_domain;
select * from users u join calendars c on c.user_id = u.id
where u.team_id = 882;
select * from activities where id = 74049485; # team 563 crm 537
select * from activities where id = 73272382; # team 563 crm 537
select * from activities where id = 64400389; # team 563 crm 537
select * from activities where id = 58081273; # team 563 crm 537
select * from activities where id = 54520297; # team 563 crm 537
select * from participants where activity_id = 58081273;
select * from activities where crm_configuration_id = 537 and provider = 'aircall'
and account_id = 19003658 order by updated_at desc;
select * from contacts where crm_configuration_id = 537 and id = 35957759;
select * from accounts where crm_configuration_id = 537 and id = 19003658;
select * from automated_report_results where id = 1976;
select * from automated_reports where id = 583;
select * from activity_searches where id = 87714;
select * from activity_search_filters where activity_search_id = 87714;
SELECT * FROM activities WHERE uuid_to_bin('8827f672-202d-4162-9d04-73ff5f0566a9') = uuid
or uuid_to_bin('47842446-af51-4bcb-854f-cc6560290101') = uuid;
SELECT * FROM crm_configurations WHERE provider = 'hubspot';
select * from rate_limits;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions, folder
Component, folder
Acl, folder
ActionItems, folder
Activity
ActivityAnalytics
ActivitySearch
AiActivityType
AiAutomation
AiCallScoring
AskAnything
Dtos
Events
AskAnythingPromptService.php, class
HistoryService.php, class
AskJiminnyAi
AWS, folder
BillingManagement
Cache
CoachingFeedback
Country
CustomerApi
Database
Datadog
DateTime
DealInsights
DealRisks, folder
ElasticSearch
Eloquent, folder
Encoding, folder
Encryption, folder
ES, folder
Faker, folder
FeatureFlags, folder
FFMpeg, folder
FileSystem, folder
Gecko, folder
Gong, folder
GuzzleHttp, folder
KeyPoints, folder
Kiosk, folder
LanguageDetection, folder
LiveFeed, folder
Locks, folder
Math, folder
MediaPipeline, folder
MeetingBot, folder
MobileSettings, folder
Model, folder
Notification, folder
Nudge, folder
ParagraphBreaker, folder
ParticipantSpeech, folder
PartitionedCookie, folder...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
3641
|
134
|
14
|
2026-05-07T12:32:23.125753+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778157143125_m2.jpg...
|
PhpStorm
|
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
matc
Inherited members (⌘R)
Anonymous Classes (⌘I) matc
Inherited members (⌘R)
Anonymous Classes (⌘I)
Lambdas (⌘L)
SyncCrmEntitiesTrait.php...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"matc","depth":1,"bounds":{"left":0.5212766,"top":0.31444532,"width":0.030917553,"height":0.022346368},"on_screen":true,"value":"matc","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Inherited members (⌘R)","depth":1,"bounds":{"left":0.5242686,"top":0.33998403,"width":0.052526597,"height":0.022346368},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Anonymous Classes (⌘I)","depth":1,"bounds":{"left":0.58011967,"top":0.33998403,"width":0.052526597,"height":0.022346368},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Lambdas (⌘L)","depth":1,"bounds":{"left":0.6359708,"top":0.33998403,"width":0.052526597,"height":0.022346368},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"SyncCrmEntitiesTrait.php","depth":1,"bounds":{"left":0.5242686,"top":0.31364724,"width":0.19980054,"height":0.026336791},"on_screen":true,"role_description":"text"}]...
|
-9148788009616122181
|
7532062033701913281
|
visual_change
|
hybrid
|
NULL
|
matc
Inherited members (⌘R)
Anonymous Classes (⌘I) matc
Inherited members (⌘R)
Anonymous Classes (⌘I)
Lambdas (⌘L)
SyncCrmEntitiesTrait.php
PhostormINavigarecodeFV faVsco.js© SyncToUserPilot.phpC) RateLimitAwareWrapper.pnp• M CalendarC) AddRateLimitCommana.pnpT IntegrationApp/.../SyncCrmEntitiesTrait.php© SyncOpportunity.php> • Conference© webnooksyncbatchProcessor.pngv D Crm> M BullhornTImportBatchJobTrait.phg(©) Middleware/RateLimited.pnpHip/RateLimited.phg)BaserateLimiter.phpC service.phg> D Close> @ Copper> @ CrmObjects@ Hubspot/../SyncCrmEntitiesTrait.php xtrait synccrmentitzestrait> O DecorateActivity> C DummyU helpersv U HuDSpOta AccountsyncstrateayActions• ContacisyncstrareavD DTO0 Fields71 6tu JournaD Metadatev OpportunitvSvncStratea Concerns© HubspotLastModifi€ 100 @, Gt© HubspotLastModifieC) HubsnotLastModitie(C) HubsnotLastModifie(C) HubspotLastModifie(C) HubsnotSinaleSvncc, HuhsnotSvneStrate(C) HubsnotWehhookR> M PadinationD ProspectSearchStratecD RedisD ServiceTraitsu opportunitysyncire 11dV synccrmenutes tra 113© SyncFields Trait.php 114( WriteCrmTrait.php>O Utils.0 Webhook|c) BatchSvncCollector.phC) BatchSvncRedisServicC) Closed Dea StadesServC)DecorateActivitv.ohoC) FieldTivoeConverter.oh© HubspotClientinterfaceC) HubsootTokenManade© PayloadBuilder.php(C) RemoteCrm@biectManga ResnonceNormalize nh* - Backfill operations* ror regular sync webnook bacchsyncconcacts is used.* doaram carbon sSince reuch concacus moulrled arcer chis date: Qparam CarbonInulz Sto Optional end date for modification rangepublic function svncContacts(Carbon Ssince. ?Carbon Sto = null): int{...}* Ginheritdodnublic function svncContact(strina Scrmid: ?Contacttryif ( Sthis->client instanceof HubspotClientInterface) i+hoow new TnvalidAraumentSycentiond medage: 'Client must implement HubspotClientInterface'):Sfields= Sthis->aettontactFioldco•$hsContact = Sthis->client->getContactById($crmId, $fields):} catch (\HubSpot\Client\Crm\Contacts \ApiException $e) {Cthic-nloanon.sinfortrt• Sthis->getDisplayName . '] Contact fetch failed', ['teamId' => $this->team->getUuid."crmld => scrmld,'reason' => $e->qetMessageO1);} catch (CrmException Se) {Sthis->logger->info@f'.Sthis->qetd1splavNameo.'] Contact not found'.["teamid => sthus->team->cetuuido"reason' => Se->aetMessageOl14iemntv(ChstontactiinronentieciilemntvShccontactftid11.ngSthis-sloagen-swanningftrt Sthis-aethicnlavNameo"Contact data incomnlete!.teamtd' => Sthis->team->aetlluidoarQube for IDE suggestions: Detect more security issues in your PHP files // Try SonarQube Cloud for free // Download SonarQube Server // Learn more // Don't ask again (today 10:25)• Lukas sterka 121 • In 1h o0mInu / May 10.32-20AskJiminnyReportActivityServiceTest -= custom.log« SF [jiminny@localhost]HS_local (jiminny@localhost]« console [PROD]console [STAGINGIQ- Hubspot22R Match case[2026-05-07 12:28:14] local.INF0: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities" "memoryBeforeCommandInMb":62.0, "memo "[2026-05-07 12:28:17] local.INF0:[SocialAccountServicel Fetching token {"socialAccountId":1499 "provider":"hubspot"} {"correlation_id":"273355f2-6315-4b20-bc9a-c26c681d6344"|2020-05-01 12.20.1/ Local.LNrU:ISOCHALACCOUnLSENVACeILOKENNeEusNeTesinoEtSOctaLACCOUncLoN147FONOVLden nUDSDосизвсом мешатоюномн45555174-0545-40488осУа-C4OCOВ[2026-05-07 12:28:17] local.INF0:[EncryptedTokenManager] Generating access token. {"mode": "legacy"} {"correlation_id":"273355f2-6315-4b20-bc9a-c26c681d6344" , "trace_id" : "5ea79т 462 X32 ^ V (2026-05-07 12:28:171 Local.INFO: [SocialAccountServicell Refreshing token from provider "socialAccountId":1499, "provider" : "hubspot", "nefreshToken": "96f94c623a404e02ebdbf07f1b[2026-05-07 12:28:18] Local.NOTICE: Monitoring start{"correlation_id":"31aa6b7d-00d6-448a-bdcc-a3d215b4aeb5", "trace_id":"b8eb7fe5-8471-4ffb-9bfa-a804c8e1ff72"}12026-05-082828818OcaL-NOCEH MOn tONng endcorreLation 1casnaa0b/0-0006-448а-b0cc-asc245b4aebsn"trace омяОВеруе5-8404-410-90на-а8о4свен5 тн2[2026-05-07 12•28:181 local. INF0:f"correlation id"."273355f2-6315-4b20-bc9a-c26c681d6344" "trace id"."5ea79a26-c838-48e8-9913-93ad508146- [2026-05-07 12:28:18] Local.INF0:SocialAccountloserver Access token was modhrled, encrvotino"correlation 1d":[CREDIT_CARD]-0c9a-026068106544""trace 1d":"Sea72a26:[2026-05-07 12:28:18] Local. INFO:[SocialAccountService] Token refreshed {"socialAccountId":1499, "provider": "hubspot", "state": "connected"} {"correlation_id":"273355f2-6315-4b22026-05-07 12:28:18 Local.INF0:IcomownerReso ver Dntemnatiion owner matched as CRM ownenweem onoviden nhubspotlcom ownen rZ8,team WaWconnellataionSGWA 206615512[2026-05-07 12:28:19] local.INFO: [Hubspot] Failed to fetch opportunity {"crm_id":"374720564", "reason":"[429] Client error: 'GET https://api.hubapi.com/crm/v3/objects/deals/37Q matcSvncermEntitiesTrait.phong limit.", "errorType)":"RATE_LIMIT\", "correlationid" (truncated...)9a26-c838-48e8-9913-93ad508146a6",Inherited members J3RAnonymous Classes (28))Lambdas (&L)pi.com/crm/v3/objects/deals/374720564?properties=hs_object_id%2Cdealname&associations=companies%2Cct.","errorType":"RATE_LIMIT","correlationid" (truncated...)): [429] Client error:'GET https://api.hubapi.com/crm/v3/objects/deals/374720564?properties=hs_obing limit.","errorType\":"RATE_LIMIT\",\"correlationId" (truncated...)hp:704)p(676): HubSpot\\Client\\Crm\\Deals\\Api\\BasicApi->getByIdWithHttpInfo('374720564', 'hs_object_idCrm\\Deals\\Api\ \BasicApi->getById('374720564', 'hs_object_id,de...',companzes, conta....php (130): Jiminny\(Services\\Crm\\Hubspot\\Client->getOpportunityById('374720564', Array)Services\Crm\Hubspotl|Service->syncOpportunity('374720564')Consolel\CommandsJiminnyDebugCommand->rateLimitood.php(56: Jiminny ConsoleCommandsJiminnyDebuqcommand->handle Ubnect Jiminny Jobs Jobbispat43): Illuminate\Container\BoundMethod::Illuminate|Container{closure'od.php(96): Illuminate\Container\Util::unwrapIfClosure(Obiect(Closure))od.php(35): Illuminate\Container\BoundMethod::callBoundMethod(Obiect(Illuminate\Foundation\Appl.onow99:Luminate Contarner Boundmethod::cauubnect euuuminate FoundationAno ucation). Anp(211): Illuminate\\Container\\Container->call(Array)eConsole Command->execute(Obiect SvmfonyComponent ConsoleInout Aravinout). Obfect onluminap(180): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\InpuConsole Command->run Obiect Sumfony Comoonent Console inout Aravinout), Obiect Sumfony Compononent\(Console\\Application->doRunCommand(Object(Jiminny\\Console\\Commands\\JiminnyDebugCommand),onentConsoleAppuication->doRunObiect Sumfony Comoonent Consolenout Aravinout). Obiect(Sv#16 /home/jiminny/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(198): Symfony\\Component\\Console\\Application->run(Object(Symfony|\Component|\Console\=#17/home/Ltiminny//vendor//apavelLfcamewook/scc/Tluminate/Eoundation/AnnLication..nhn(1235)._Mlluminatel\Eoundationl\Consolel|Kernel->handle(0hiect(SvmfonvlComnonentlfonsolel- #18 /home/iiminnv/antisan(13)• Tlluminatel|Foundation| \AnnLication-shandleCommand(0biect(Svmfonv||Comnonent||Console||Tnnut|\AravTnnut))l#10 <main?"3 {"correlation_id":"273355f2-6315-4b20-bc9a-c26c681d6344"', "trace_id":"5ea79a26-c838-48e8-9913-93ad508146a6"}-12026-05-07 12-28:201 1ocalLTNE0• liminnv|ConsolelCommandslCommand..nun_Memoav_usage_hefone_stanting_command_{"command". "mailhoxeskin-listsanefnesh" "memonvRefoneßommandTnMh"[2026-05-07 12:28:20] local.INF0: Jiminny Console \Commands \Command::run Memory usage for command {"command": "mailbox:skip-lists:refresh", "memoryBeforeCommandInMb" :62.0, "memorSAEÍNA CAMMANd EWCAmMAnduClmAtllhAyChAtCheneAcocel lmemoayRefoeodommandiMЬШa10 n[2026-05-07 12:28:24] local.INFO:[EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d191d5c6-133f-43e1-8ed4-d285d0c768b8" "trace_id":"67798138— [2026-05-07 12:28:24] local.INF0:[EmailSchedule] FINISHED batch process {"host":"docker lamp 1" "processed":0} {"correlation id":"d191d5c6-133f-43e1-8ed4-d285d0c768b8" "trace— [2026-05-07 12:28:24] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command" : "mailbox:batch: process" "memoryBeforeCommandInMb" : 62.0, "memorvAfter[2026-05-07 12:28:27] local.INF0: Jiminny|Console\Commands\Command::run Memory usage before starting command {"command":"conference: moniton:count", "memoryBeforeCommandInMb" : 62[2026-05-07 12:28:27] local.INF0: Running conference:moniton:count command for activities in (2026-05-07 12:26:00, 2026-05-07 12:28:00] {"conrelation id":"a4e5e18f-9f8c-4196-[2026-05-07 12:28:27] local.INF0: [conference:moniton:count] No activities found in (2026-05-07 12:26:00, 2026-05-07 12:28:001 {"conrelation id":"a4e5e18f-9f8c-4196-ace0-bf66W Windsurf Teamsio 4 spaces...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
2187
|
100
|
15
|
2026-05-07T11:04:36.741752+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778151876741_m2.jpg...
|
iTerm2
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PostmanEditVIewWindowmelpHubSpot rate limit implem PostmanEditVIewWindowmelpHubSpot rate limit implementation strategy vportal what limits does it haveCatalogued HubSpot APl endpoints for querying portal rate limits >There are essentially two endpoints plus response header inspection. That's the entire APIsurtace ror rate-limit discovery per portal.1. Daily limit + current daily usagReply +GET https://api.hubapi.com/account-info/v3/api-usage/daily/private-appsAuthorization: Bearer (portal access token;Kerums."recultell."name": "private-apps-api-calls-daily"."usageL1mit: 1000000"currentusage": 47213"resetsAt": "2026-05-08T05:00:00Z","fotchStatucll. lclldcess!This is the only API that tells you the daily ceiling and current spend for a portal. Theendpoint name savs private-aoos which is what it's offfcially documented for — itaggregates all legacy private apps in that portal. If your portal is connected via OAuth (publicaoosenevonumav eumemoyesu soraaneren shave: estron one or voulicustomer portals to see.2. Portal context (timezone. tier-related info)GET https://api.hubapi.com/account-info/v3/detailsAuthorization: Bearer portal access token}ReturnsKeep going in Claude CodeSwitch to Claude Code and let Claude work directly in your repo,running and testing as it goesWrite a message…Opus 4.7 Adaptive v"suppont Dally • In oomXx Hubspot v• SearchYour team is now on the Free plan with 1 admin. You retain editing access and other members are read-only. View team permissions to see who can edit, or upgrade to restore collaborationPOST Re:•GET Re:•GET read • GET Get'Useful > Get Engagement (v1)https://api.hubapi.com/engagements/v1/engagements/480171536586E DOCSAuthorization • Headers 9 Body Scripts SettingsAuth TypeRearer TokenToken{{token})The authorization header will beautomatically generated when vou send iBearer loken authorizationNo environmentv Save vSharecookies100% L2Inu / May 14.04.30VAIlVariables in requestG tokenCNi2ronaMxlzol...›All VallaolesV COLLECTIONS› contacts• CRM Objects• CRM Owners• CRM Pioelines> Dealsv EngagementsD OLD ENGAGEMENTSGET list meetingsPOST search moditied companiesPOST search tasksGET read call> PosT search callsGET list callsPOST meetinas scheduledGET aet meetinaPOST aet link to task> POST Create Contact with Association> HubsnotJournal & webhoooks v4• ©Auth• Properties, RESFAPCHSEARCH• Ticketsv Usetulpost filter ner comnanv / onlv onenGET engagements old associated b.GET engagements old associated b..>det get history of property - deal st..GET aet ucersGeT SF oauth>GET Meeting outcomes per meeting> GET Read all properties new> Get Read all oronerties oldiGET old call dispositionsGet list with associationsGeT list engagements olcGET recent endadementsGET qet dealGET Get Enaagement (v1))CAMIDONMCNTe> spEcs>FLOWSaConcole 5.) TerminaBodyCookies 1 headers 16 lest Results401 Unauthorized 147 ms • 1.18 KB • e.g. Save Response ..."JSONVPreviewSo, Pass the correct auth credentials v"message": "This oauth-token is expired! expiresAt: 1778136095576. nоw: 1778151868772'|"message": "The OAuth token used to make this call expired 4 hour(s) ago."...
|
NULL
|
-9148741049491941462
|
NULL
|
click
|
ocr
|
NULL
|
PostmanEditVIewWindowmelpHubSpot rate limit implem PostmanEditVIewWindowmelpHubSpot rate limit implementation strategy vportal what limits does it haveCatalogued HubSpot APl endpoints for querying portal rate limits >There are essentially two endpoints plus response header inspection. That's the entire APIsurtace ror rate-limit discovery per portal.1. Daily limit + current daily usagReply +GET https://api.hubapi.com/account-info/v3/api-usage/daily/private-appsAuthorization: Bearer (portal access token;Kerums."recultell."name": "private-apps-api-calls-daily"."usageL1mit: 1000000"currentusage": 47213"resetsAt": "2026-05-08T05:00:00Z","fotchStatucll. lclldcess!This is the only API that tells you the daily ceiling and current spend for a portal. Theendpoint name savs private-aoos which is what it's offfcially documented for — itaggregates all legacy private apps in that portal. If your portal is connected via OAuth (publicaoosenevonumav eumemoyesu soraaneren shave: estron one or voulicustomer portals to see.2. Portal context (timezone. tier-related info)GET https://api.hubapi.com/account-info/v3/detailsAuthorization: Bearer portal access token}ReturnsKeep going in Claude CodeSwitch to Claude Code and let Claude work directly in your repo,running and testing as it goesWrite a message…Opus 4.7 Adaptive v"suppont Dally • In oomXx Hubspot v• SearchYour team is now on the Free plan with 1 admin. You retain editing access and other members are read-only. View team permissions to see who can edit, or upgrade to restore collaborationPOST Re:•GET Re:•GET read • GET Get'Useful > Get Engagement (v1)https://api.hubapi.com/engagements/v1/engagements/480171536586E DOCSAuthorization • Headers 9 Body Scripts SettingsAuth TypeRearer TokenToken{{token})The authorization header will beautomatically generated when vou send iBearer loken authorizationNo environmentv Save vSharecookies100% L2Inu / May 14.04.30VAIlVariables in requestG tokenCNi2ronaMxlzol...›All VallaolesV COLLECTIONS› contacts• CRM Objects• CRM Owners• CRM Pioelines> Dealsv EngagementsD OLD ENGAGEMENTSGET list meetingsPOST search moditied companiesPOST search tasksGET read call> PosT search callsGET list callsPOST meetinas scheduledGET aet meetinaPOST aet link to task> POST Create Contact with Association> HubsnotJournal & webhoooks v4• ©Auth• Properties, RESFAPCHSEARCH• Ticketsv Usetulpost filter ner comnanv / onlv onenGET engagements old associated b.GET engagements old associated b..>det get history of property - deal st..GET aet ucersGeT SF oauth>GET Meeting outcomes per meeting> GET Read all properties new> Get Read all oronerties oldiGET old call dispositionsGet list with associationsGeT list engagements olcGET recent endadementsGET qet dealGET Get Enaagement (v1))CAMIDONMCNTe> spEcs>FLOWSaConcole 5.) TerminaBodyCookies 1 headers 16 lest Results401 Unauthorized 147 ms • 1.18 KB • e.g. Save Response ..."JSONVPreviewSo, Pass the correct auth credentials v"message": "This oauth-token is expired! expiresAt: 1778136095576. nоw: 1778151868772'|"message": "The OAuth token used to make this call expired 4 hour(s) ago."...
|
2186
|
NULL
|
NULL
|
NULL
|
|
5388
|
194
|
17
|
2026-05-07T15:22:48.577237+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778167368577_m2.jpg...
|
Slack
|
releases (Channel) - Jiminny Inc - 3 new items - S releases (Channel) - Jiminny Inc - 3 new items - Slack...
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Stefka Stoyanova
Ves
Galya Dimitrova
Aneliya Angelova
Vasil Vasilev
James Graham
Nikolay Ivanov
Lukas Kovalik
you
Jira Cloud
Toast
Messages
Messages
Files
Files
Bookmarks
Bookmarks
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Today at 4:33:51 PM
4:33
New commits deployed to Prophet Prod-EU:
[74673da](
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
) - [JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502) (steliyan-g)
GitHub
APP
Today at 5:03:19 PM
5:03 PM
3 new commits
3 new commits
pushed to
master
master
by
mihailmihaylovjiminny
mihailmihaylovjiminny
beb8e387
beb8e387
- JY-20817: Fix deleting old tracks
8f177131
8f177131
- Merge branch 'master' into JY-20817-fix-deleting-old-tracks
[CREDIT_CARD]
- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks
jiminny/app
jiminny/app
|
Added by
GitHub
GitHub
CircleCI
APP
Today at 5:29:41 PM
5:29 PM
Deployment Successful! tada emoji
Deployment Successful!
Project
: app
When
: 05/07/2026 14:29:40
Tag
:
View Job
View Job
New
CircleCI
APP
Today at 6:18:57 PM
6:18 PM
New commits deployed to Prophet Prod-US:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Today at 6:19:24 PM
6:19
New commits deployed to Prophet Prod-EU:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Channel releases...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"bounds":{"left":0.0056515955,"top":0.058260176,"width":0.011968086,"height":0.028731046},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"bounds":{"left":0.0029920214,"top":0.10055866,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"bounds":{"left":0.0066489363,"top":0.13806863,"width":0.009973404,"height":0.0103751},"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"bounds":{"left":0.0029920214,"top":0.15482841,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"bounds":{"left":0.0076462766,"top":0.19233839,"width":0.007978723,"height":0.0103751},"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"bounds":{"left":0.0029920214,"top":0.20909816,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"bounds":{"left":0.004986702,"top":0.24660814,"width":0.012965426,"height":0.0103751},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.005319149,"top":0.24660814,"width":0.0026595744,"height":0.011173184}},{"char_start":1,"char_count":7,"bounds":{"left":0.0076462766,"top":0.24660814,"width":0.010638298,"height":0.011173184}}],"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"bounds":{"left":0.0029920214,"top":0.26336792,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"bounds":{"left":0.0076462766,"top":0.3008779,"width":0.0076462766,"height":0.0103751},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.007978723,"top":0.3008779,"width":0.0019946808,"height":0.011173184}},{"char_start":1,"char_count":4,"bounds":{"left":0.009973404,"top":0.3008779,"width":0.0056515955,"height":0.011173184}}],"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"bounds":{"left":0.0029920214,"top":0.31763768,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"bounds":{"left":0.00731383,"top":0.35514766,"width":0.008643617,"height":0.0103751},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.00731383,"top":0.35514766,"width":0.0019946808,"height":0.011173184}},{"char_start":1,"char_count":4,"bounds":{"left":0.00930851,"top":0.35514766,"width":0.0066489363,"height":0.011173184}}],"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"bounds":{"left":0.0029920214,"top":0.3719074,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"bounds":{"left":0.006981383,"top":0.4094174,"width":0.008976064,"height":0.0103751},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.00731383,"top":0.4094174,"width":0.0033244682,"height":0.011173184}},{"char_start":1,"char_count":3,"bounds":{"left":0.010638298,"top":0.4094174,"width":0.0056515955,"height":0.011173184}}],"role_description":"text"},{"role":"AXStaticText","text":"Unreads","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"bugs","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":23,"bounds":{"left":0.042220745,"top":0.09177973,"width":0.027593086,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":23,"bounds":{"left":0.042220745,"top":0.10055866,"width":0.025598405,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.10055866,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":10,"bounds":{"left":0.04488032,"top":0.10055866,"width":0.022938829,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"general","depth":23,"bounds":{"left":0.042220745,"top":0.12290503,"width":0.015957447,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.12290503,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":6,"bounds":{"left":0.04488032,"top":0.12290503,"width":0.013297873,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":23,"bounds":{"left":0.042220745,"top":0.1452514,"width":0.022938829,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.1452514,"width":0.0013297872,"height":0.014365523}},{"char_start":1,"char_count":9,"bounds":{"left":0.043550532,"top":0.1452514,"width":0.021609042,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":23,"bounds":{"left":0.042220745,"top":0.16759777,"width":0.034906916,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.16759777,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.045212764,"top":0.16759777,"width":0.031914894,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":23,"bounds":{"left":0.042220745,"top":0.18994413,"width":0.03856383,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.18994413,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.045212764,"top":0.18994413,"width":0.03557181,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"random","depth":23,"bounds":{"left":0.042220745,"top":0.2122905,"width":0.01662234,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.2122905,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":5,"bounds":{"left":0.044215426,"top":0.2122905,"width":0.014960106,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":23,"bounds":{"left":0.042220745,"top":0.23463687,"width":0.01761968,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.23463687,"width":0.0016622341,"height":0.014365523}},{"char_start":1,"char_count":7,"bounds":{"left":0.043882977,"top":0.23463687,"width":0.015957447,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"sofia-office","depth":23,"bounds":{"left":0.042220745,"top":0.25698325,"width":0.024268618,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.25698325,"width":0.0023271276,"height":0.014365523}},{"char_start":1,"char_count":11,"bounds":{"left":0.04454787,"top":0.25698325,"width":0.021941489,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"support","depth":23,"bounds":{"left":0.042220745,"top":0.2793296,"width":0.016954787,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.2793296,"width":0.0023271276,"height":0.014365523}},{"char_start":1,"char_count":6,"bounds":{"left":0.04454787,"top":0.2793296,"width":0.01462766,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":23,"bounds":{"left":0.042220745,"top":0.30167598,"width":0.024268618,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.30167598,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":9,"bounds":{"left":0.044215426,"top":0.30167598,"width":0.022606382,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":23,"bounds":{"left":0.042220745,"top":0.32402235,"width":0.04488032,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.32402235,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":20,"bounds":{"left":0.044215426,"top":0.32402235,"width":0.04720745,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"bounds":{"left":0.042220745,"top":0.37669593,"width":0.03756649,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.37669593,"width":0.0033244682,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.045545213,"top":0.37669593,"width":0.034242023,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"bounds":{"left":0.07945479,"top":0.37669593,"width":0.0063164895,"height":0.014365523},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"bounds":{"left":0.08211436,"top":0.37669593,"width":0.014295213,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.08211436,"top":0.37669593,"width":0.0039893617,"height":0.014365523}},{"char_start":1,"char_count":13,"bounds":{"left":0.08610372,"top":0.37669593,"width":0.028922873,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"bounds":{"left":0.09607713,"top":0.3942538,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"bounds":{"left":0.09607713,"top":0.3942538,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11735372,"top":0.37669593,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":16,"bounds":{"left":0.1200133,"top":0.37669593,"width":0.03557181,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":23,"bounds":{"left":0.042220745,"top":0.3990423,"width":0.028922873,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.3990423,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":11,"bounds":{"left":0.04488032,"top":0.3990423,"width":0.026263298,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":23,"bounds":{"left":0.042220745,"top":0.42138866,"width":0.03756649,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.42138866,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.04488032,"top":0.42138866,"width":0.03523936,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Ves","depth":23,"bounds":{"left":0.042220745,"top":0.44373503,"width":0.0076462766,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.44373503,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":2,"bounds":{"left":0.045212764,"top":0.44373503,"width":0.004986702,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":23,"bounds":{"left":0.042220745,"top":0.4660814,"width":0.034906916,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.4660814,"width":0.003656915,"height":0.014365523}},{"char_start":1,"char_count":14,"bounds":{"left":0.045877658,"top":0.4660814,"width":0.03158245,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"bounds":{"left":0.042220745,"top":0.4884278,"width":0.03756649,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.4884278,"width":0.0033244682,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.045545213,"top":0.4884278,"width":0.034242023,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":23,"bounds":{"left":0.042220745,"top":0.51077414,"width":0.026263298,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.51077414,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":12,"bounds":{"left":0.045212764,"top":0.51077414,"width":0.023271276,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"James Graham","depth":23,"bounds":{"left":0.042220745,"top":0.5331205,"width":0.031914894,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.5331205,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":11,"bounds":{"left":0.044215426,"top":0.5331205,"width":0.029920213,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":23,"bounds":{"left":0.042220745,"top":0.5554669,"width":0.031914894,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.5554669,"width":0.0039893617,"height":0.014365523}},{"char_start":1,"char_count":13,"bounds":{"left":0.046210106,"top":0.5554669,"width":0.027925532,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Lukas Kovalik","depth":23,"bounds":{"left":0.042220745,"top":0.57781327,"width":0.02925532,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.57781327,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":12,"bounds":{"left":0.04488032,"top":0.57781327,"width":0.026928192,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"you","depth":23,"bounds":{"left":0.07413564,"top":0.57781327,"width":0.0063164895,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.07446808,"top":0.57781327,"width":0.0023271276,"height":0.014365523}},{"char_start":1,"char_count":2,"bounds":{"left":0.07679521,"top":0.57781327,"width":0.0056515955,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":23,"bounds":{"left":0.042220745,"top":0.63048685,"width":0.021609042,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.63048685,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":9,"bounds":{"left":0.044215426,"top":0.63048685,"width":0.019946808,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Toast","depth":23,"bounds":{"left":0.042220745,"top":0.6528332,"width":0.011635638,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.6528332,"width":0.0023271276,"height":0.014365523}},{"char_start":1,"char_count":4,"bounds":{"left":0.04454787,"top":0.6528332,"width":0.00930851,"height":0.014365523}}],"role_description":"text"},{"role":"AXRadioButton","text":"Messages","depth":17,"bounds":{"left":0.10206117,"top":0.09177973,"width":0.030585106,"height":0.030327214},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Messages","depth":19,"bounds":{"left":0.111369684,"top":0.10055866,"width":0.01861702,"height":0.012769354},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.111369684,"top":0.10055866,"width":0.0039893617,"height":0.012769354}},{"char_start":1,"char_count":7,"bounds":{"left":0.115359046,"top":0.10055866,"width":0.014960106,"height":0.012769354}}],"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":17,"bounds":{"left":0.13397606,"top":0.09177973,"width":0.020944148,"height":0.030327214},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":19,"bounds":{"left":0.14328457,"top":0.10055866,"width":0.008976064,"height":0.012769354},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.14328457,"top":0.10055866,"width":0.0026595744,"height":0.012769354}},{"char_start":1,"char_count":4,"bounds":{"left":0.14594415,"top":0.10055866,"width":0.0063164895,"height":0.012769354}}],"role_description":"text"},{"role":"AXRadioButton","text":"Bookmarks","depth":17,"bounds":{"left":0.15591756,"top":0.09177973,"width":0.033909574,"height":0.030327214},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Bookmarks","depth":19,"bounds":{"left":0.16522606,"top":0.10055866,"width":0.021941489,"height":0.012769354},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.16555852,"top":0.10055866,"width":0.0029920214,"height":0.012769354}},{"char_start":1,"char_count":8,"bounds":{"left":0.16821809,"top":0.10055866,"width":0.019281914,"height":0.012769354}}],"role_description":"text"},{"role":"AXPopUpButton","text":"Add and Edit Channel Tabs","depth":17,"bounds":{"left":0.19115691,"top":0.09177973,"width":0.010638298,"height":0.030327214},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Canvas","depth":17,"bounds":{"left":0.096409574,"top":0.0518755,"width":0.015625,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"List","depth":17,"bounds":{"left":0.096409574,"top":0.0518755,"width":0.0076462766,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":17,"bounds":{"left":0.096409574,"top":0.0518755,"width":0.013962766,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXPopUpButton","text":"Jump to date","depth":22,"bounds":{"left":0.14594415,"top":0.12689546,"width":0.025265958,"height":0.022346368},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Today at 4:33:51 PM","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"4:33","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-EU:","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"[74673da](","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":") - [JY-205680](","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502) (steliyan-g)","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"GitHub","depth":23,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Today at 5:03:19 PM","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5:03 PM","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"3 new commits","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3 new commits","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"pushed to","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"master","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"master","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"by","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"mihailmihaylovjiminny","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"mihailmihaylovjiminny","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"beb8e387","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"beb8e387","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- JY-20817: Fix deleting old tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"8f177131","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8f177131","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- Merge branch 'master' into JY-20817-fix-deleting-old-tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"12295204","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"12295204","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"jiminny/app","depth":25,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"jiminny/app","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"|","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Added by","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"GitHub","depth":25,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"GitHub","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"CircleCI","depth":23,"bounds":{"left":0.11801862,"top":0.11572227,"width":0.01761968,"height":0.009577015},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"bounds":{"left":0.13796543,"top":0.11572227,"width":0.0066489363,"height":0.005586592},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.14527926,"top":0.11572227,"width":0.0026595744,"height":0.007980846},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"Today at 5:29:41 PM","depth":23,"bounds":{"left":0.14793883,"top":0.11572227,"width":0.015292553,"height":0.0071827616},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5:29 PM","depth":24,"bounds":{"left":0.14793883,"top":0.11572227,"width":0.015292553,"height":0.0071827616},"on_screen":true,"role_description":"text"},{"role":"AXHeading","text":"Deployment Successful! tada emoji","depth":23,"bounds":{"left":0.11801862,"top":0.12849163,"width":0.095744684,"height":0.017557861},"on_screen":true,"role_description":"heading"},{"role":"AXStaticText","text":"Deployment Successful!","depth":25,"bounds":{"left":0.11801862,"top":0.1300878,"width":0.054853722,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.1300878,"width":0.0039893617,"height":0.014365523}},{"char_start":1,"char_count":21,"bounds":{"left":0.12200798,"top":0.1300878,"width":0.049867023,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Project","depth":24,"bounds":{"left":0.11801862,"top":0.15722266,"width":0.015957447,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.15722266,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":6,"bounds":{"left":0.12101064,"top":0.15722266,"width":0.012965426,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":": app","depth":24,"bounds":{"left":0.11801862,"top":0.15722266,"width":0.017287234,"height":0.031923383},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.13397606,"top":0.15722266,"width":0.0013297872,"height":0.014365523}},{"char_start":1,"char_count":4,"bounds":{"left":0.11801862,"top":0.17478053,"width":0.00831117,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"When","depth":24,"bounds":{"left":0.14926861,"top":0.15722266,"width":0.013630319,"height":0.014365523},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":": 05/07/2026 14:29:40","depth":24,"bounds":{"left":0.14926861,"top":0.15722266,"width":0.024601065,"height":0.049481247},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.16289894,"top":0.15722266,"width":0.0013297872,"height":0.014365523}},{"char_start":1,"char_count":20,"bounds":{"left":0.14926861,"top":0.17478053,"width":0.024933511,"height":0.031923383}}],"role_description":"text"},{"role":"AXStaticText","text":"Tag","depth":24,"bounds":{"left":0.11801862,"top":0.20989625,"width":0.0076462766,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.20989625,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":2,"bounds":{"left":0.120678194,"top":0.20989625,"width":0.004986702,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":":","depth":24,"bounds":{"left":0.12533244,"top":0.20989625,"width":0.0016622341,"height":0.014365523},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"View Job","depth":24,"bounds":{"left":0.11801862,"top":0.2386273,"width":0.023271276,"height":0.022346368},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View Job","depth":26,"bounds":{"left":0.12101064,"top":0.24261771,"width":0.017287234,"height":0.012769354},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.12101064,"top":0.2434158,"width":0.0029920214,"height":0.012769354}},{"char_start":1,"char_count":7,"bounds":{"left":0.12400266,"top":0.2434158,"width":0.01462766,"height":0.012769354}}],"role_description":"text"},{"role":"AXStaticText","text":"New","depth":21,"bounds":{"left":0.20478724,"top":0.2601756,"width":0.00930851,"height":0.012769354},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"CircleCI","depth":23,"bounds":{"left":0.11801862,"top":0.27055067,"width":0.01761968,"height":0.017557861},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"bounds":{"left":0.13796543,"top":0.2745411,"width":0.0066489363,"height":0.009577015},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.14527926,"top":0.27214685,"width":0.0026595744,"height":0.014365523},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"Today at 6:18:57 PM","depth":23,"bounds":{"left":0.14793883,"top":0.2745411,"width":0.015292553,"height":0.011173184},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6:18 PM","depth":24,"bounds":{"left":0.14793883,"top":0.2745411,"width":0.015292553,"height":0.011173184},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.14793883,"top":0.2745411,"width":0.0026595744,"height":0.011971269}},{"char_start":1,"char_count":6,"bounds":{"left":0.15026596,"top":0.2745411,"width":0.012965426,"height":0.011971269}}],"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-US:","depth":24,"bounds":{"left":0.11801862,"top":0.2897047,"width":0.089428194,"height":0.031923383},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.2897047,"width":0.003656915,"height":0.014365523}},{"char_start":1,"char_count":39,"bounds":{"left":0.11801862,"top":0.2897047,"width":0.089428194,"height":0.031923383}}],"role_description":"text"},{"role":"AXStaticText","text":"[3da5aed](","depth":24,"bounds":{"left":0.11801862,"top":0.32482043,"width":0.021941489,"height":0.031923383},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.32482043,"width":0.0016622341,"height":0.014365523}},{"char_start":1,"char_count":9,"bounds":{"left":0.11801862,"top":0.32482043,"width":0.021941489,"height":0.031923383}}],"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":24,"bounds":{"left":0.11801862,"top":0.3423783,"width":0.09507979,"height":0.049481247},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":25,"bounds":{"left":0.11801862,"top":0.3423783,"width":0.09507979,"height":0.049481247},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11934841,"top":0.3423783,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":81,"bounds":{"left":0.11801862,"top":0.3423783,"width":0.09541223,"height":0.049481247}}],"role_description":"text"},{"role":"AXStaticText","text":") - Revert \"[JY-205680](","depth":24,"bounds":{"left":0.11801862,"top":0.377494,"width":0.06981383,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"bounds":{"left":0.11801862,"top":0.39505187,"width":0.087765954,"height":0.031923383},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"bounds":{"left":0.11801862,"top":0.39505187,"width":0.087765954,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502)\" (#503) (steliyan-g)","depth":24,"bounds":{"left":0.11801862,"top":0.41260973,"width":0.080784574,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"bounds":{"left":0.12865691,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"bounds":{"left":0.1392952,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"bounds":{"left":0.14993352,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"bounds":{"left":0.16057181,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reply in thread","depth":25,"bounds":{"left":0.17121011,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":25,"bounds":{"left":0.1818484,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":25,"bounds":{"left":0.21476063,"top":0.25698325,"width":0.0003324468,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.21476063,"top":0.25698325,"width":0.0003324468,"height":0.025538707},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Today at 6:19:24 PM","depth":24,"bounds":{"left":0.107380316,"top":0.45650437,"width":0.007978723,"height":0.011173184},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6:19","depth":25,"bounds":{"left":0.107380316,"top":0.45650437,"width":0.007978723,"height":0.011173184},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-EU:","depth":24,"bounds":{"left":0.11801862,"top":0.45411015,"width":0.089428194,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"[3da5aed](","depth":24,"bounds":{"left":0.11801862,"top":0.48922586,"width":0.021941489,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":24,"bounds":{"left":0.11801862,"top":0.5067837,"width":0.09507979,"height":0.049481247},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":25,"bounds":{"left":0.11801862,"top":0.5067837,"width":0.09507979,"height":0.049481247},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":") - Revert \"[JY-205680](","depth":24,"bounds":{"left":0.11801862,"top":0.54189944,"width":0.06981383,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"bounds":{"left":0.11801862,"top":0.5594573,"width":0.087765954,"height":0.031923383},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"bounds":{"left":0.11801862,"top":0.5594573,"width":0.087765954,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502)\" (#503) (steliyan-g)","depth":24,"bounds":{"left":0.11801862,"top":0.57701516,"width":0.080784574,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"bounds":{"left":0.12865691,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"bounds":{"left":0.1392952,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"bounds":{"left":0.14993352,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"bounds":{"left":0.16057181,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reply in thread","depth":25,"bounds":{"left":0.17121011,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":25,"bounds":{"left":0.1818484,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":25,"bounds":{"left":0.21476063,"top":0.4293695,"width":0.0003324468,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.21476063,"top":0.4293695,"width":0.0003324468,"height":0.025538707},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"","depth":23,"bounds":{"left":0.10372341,"top":0.6272945,"width":0.109707445,"height":0.030327214},"on_screen":true,"value":"","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Channel releases","depth":11,"bounds":{"left":0.0,"top":0.7126895,"width":0.017287234,"height":0.0007980846},"on_screen":true,"role_description":"text"}]...
|
-9148023435312877905
|
-128012899957948705
|
visual_change
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Stefka Stoyanova
Ves
Galya Dimitrova
Aneliya Angelova
Vasil Vasilev
James Graham
Nikolay Ivanov
Lukas Kovalik
you
Jira Cloud
Toast
Messages
Messages
Files
Files
Bookmarks
Bookmarks
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Today at 4:33:51 PM
4:33
New commits deployed to Prophet Prod-EU:
[74673da](
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
) - [JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502) (steliyan-g)
GitHub
APP
Today at 5:03:19 PM
5:03 PM
3 new commits
3 new commits
pushed to
master
master
by
mihailmihaylovjiminny
mihailmihaylovjiminny
beb8e387
beb8e387
- JY-20817: Fix deleting old tracks
8f177131
8f177131
- Merge branch 'master' into JY-20817-fix-deleting-old-tracks
[CREDIT_CARD]
- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks
jiminny/app
jiminny/app
|
Added by
GitHub
GitHub
CircleCI
APP
Today at 5:29:41 PM
5:29 PM
Deployment Successful! tada emoji
Deployment Successful!
Project
: app
When
: 05/07/2026 14:29:40
Tag
:
View Job
View Job
New
CircleCI
APP
Today at 6:18:57 PM
6:18 PM
New commits deployed to Prophet Prod-US:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Today at 6:19:24 PM
6:19
New commits deployed to Prophet Prod-EU:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Channel releases
ActivityMoreSlackcalVIewJiminny... ~# engineering# general# jiminny-bg# platform-tickets# product launches# random# releases# soha-ofhce# support# thank-vous# the people of jimi..ó- Direct messages3 Aneliya Angelova. ...8 Stovan Tanev €Stefka StoyanovaFal Ves% Galya Dimitrova DAneliva Angelova6 Vasil Vasilev&o James Grahamed Nikolay IvanovLukas Kovalik y...#:Apps-T lira Cloud• Toast> (h External Librariesv E Scratches and Consolesv C Database ConsolesV AEUA console 1EUDEAL RISKS EUTIninnvGlocalho: 185|A zoho dev fiiminnvGlocalh 190MistonWindowHelp@ Describe what you are looking forw releases9 22MessagesC Files& BookmarksDeplovmentTodayv!Project:appWhen.05/07/2026 14:29:40lag.View JobCircleCl APP 6:18 PMNew commits deployed to Prophet P[URL_WITH_CREDENTIALS] Token refresh and retry successful'.l'team id' => $client->getConfiq(->qetTeam©->qetIdo.Plattorm Sprint s @2 - Plattorm XSevenShores\Hubspot\ExceptionsService-Desk - Queues - Platform• Jy 20807 check various issues witIlluminate|Queue\MaxAttemptsExc••Pull requests • jiminny/aprU Useroilot 1 Ask liminny Report Gen• JY-20773 fix user pilot tracking ofiProblem loading page0 Search the CRM - HubSpot docs8 JiminnyLL Now TabJ JIMINNY@ For you• Recent* StarredI0+ AppsQ SpacesJiminny (New)…ull Plauorm leamII1 Caoture TeamID Enterprise Stability I..ID Processing TeamIIl SE KanbanService-Desk= More spaces= FiltersH DashboardsC÷ Operations* Confluence28 Teams"= Customise sidebarGOWOOA100% s2•Thu 7 May 18:22:48minny.aulasslan.netfa/sorware/c/oroecis/uy/ooarass,• Search|+ CreateAsk RovoSpaces / Jiminny (New)Platform Team | 9.@ Summary—TimelineE BacklogШ Active sprintsCalendar • Reports 4 Testing Board W List Forms Components %> Development% CodeMore 8• Search boardi00O008Eoic vType vQuick filters vComplete sprintGrouo: @ueriesIREADY FOR DEV 1IN DEV 5CODE REVIEWBLOCKEDQA 1|PO ACCEPTANCEDEPLOY 7Setun test coveradelfor Prophet in SonarlSmart Instant NudgePre-filteringMAINTENANCECOST-EFFECTIVE AND FAS...BacklogIn Dev3.5 0 =V JY-19951N JY-20493|AT Doviow - 01 -Summary/Actioniems/kev PointsGROWTH - MAINTAIN OURIn DovT.1Y-20566[POC)Jiminny MCPConnectonJIMINNY MCP CONNECTORIn Proaress1 •ee=• JY-20625AJ Panorama for CallScoring in ODAUTOMATED AI SCORINGIIn Dev2.5=JY-20361[HubSpot] OptimiseCRM rematchina ondelete hubsoot..PLATFORM STABILITYTn NoulSync opportunitiesowner (user_id is..PLATFORM STABILITYTn OAI3 88 0000 =JY-20352•Al Reports > Emptypage design andpromotionAJ REPORTSDenloved|1 12 •000 =0 JY-20372Grok via AzurelMAINTENANCEDeplovedœe=0 JY-20726Allow ticorc to dolotaSS and Panoramapromots when thos...AJ REPORTSDeployed1 8000·½ JY-20770Release AJPanorama reports tocustomersA.I REpORTSDeniovedt0.5 72 0000=O JY-20740Wrona formattina fosummary in the CRMMAINTENANCEDeployed3Ý•00=...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
5389
|
193
|
12
|
2026-05-07T15:22:51.158721+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778167371158_m1.jpg...
|
Slack
|
releases (Channel) - Jiminny Inc - 3 new items - S releases (Channel) - Jiminny Inc - 3 new items - Slack...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Stefka Stoyanova
Ves
Galya Dimitrova
Aneliya Angelova
Vasil Vasilev
James Graham
Nikolay Ivanov
Lukas Kovalik
you
Jira Cloud
Toast
Messages
Messages
Files
Files
Bookmarks
Bookmarks
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Today at 4:33:51 PM
4:33
New commits deployed to Prophet Prod-EU:
[74673da](
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
) - [JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502) (steliyan-g)
GitHub
APP
Today at 5:03:19 PM
5:03 PM
3 new commits
3 new commits
pushed to
master
master
by
mihailmihaylovjiminny
mihailmihaylovjiminny
beb8e387
beb8e387
- JY-20817: Fix deleting old tracks
8f177131
8f177131
- Merge branch 'master' into JY-20817-fix-deleting-old-tracks
[CREDIT_CARD]
- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks
jiminny/app
jiminny/app
|
Added by
GitHub
GitHub
CircleCI
APP
Today at 5:29:41 PM
5:29 PM
Deployment Successful! tada emoji
Deployment Successful!
Project
: app
When
: 05/07/2026 14:29:40
Tag
:
View Job
View Job
New
CircleCI
APP
Today at 6:18:57 PM
6:18 PM
New commits deployed to Prophet Prod-US:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Today at 6:19:24 PM
6:19
New commits deployed to Prophet Prod-EU:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Channel releases...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Unreads","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"bugs","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"general","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"random","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"sofia-office","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"support","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Ves","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"James Graham","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Lukas Kovalik","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"you","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Toast","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Messages","depth":17,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Messages","depth":19,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":17,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":19,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Bookmarks","depth":17,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Bookmarks","depth":19,"on_screen":true,"role_description":"text"},{"role":"AXPopUpButton","text":"Add and Edit Channel Tabs","depth":17,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Canvas","depth":17,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"List","depth":17,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":17,"on_screen":true,"role_description":"text"},{"role":"AXPopUpButton","text":"Jump to date","depth":22,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Today at 4:33:51 PM","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"4:33","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-EU:","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"[74673da](","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":") - [JY-205680](","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502) (steliyan-g)","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"GitHub","depth":23,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Today at 5:03:19 PM","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5:03 PM","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"3 new commits","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3 new commits","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"pushed to","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"master","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"master","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"by","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"mihailmihaylovjiminny","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"mihailmihaylovjiminny","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"beb8e387","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"beb8e387","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- JY-20817: Fix deleting old tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"8f177131","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8f177131","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- Merge branch 'master' into JY-20817-fix-deleting-old-tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"12295204","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"12295204","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"jiminny/app","depth":25,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"jiminny/app","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"|","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Added by","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"GitHub","depth":25,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"GitHub","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"CircleCI","depth":23,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"Today at 5:29:41 PM","depth":23,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5:29 PM","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXHeading","text":"Deployment Successful! tada emoji","depth":23,"on_screen":true,"role_description":"heading"},{"role":"AXStaticText","text":"Deployment Successful!","depth":25,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Project","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":": app","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"When","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":": 05/07/2026 14:29:40","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Tag","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":":","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"View Job","depth":24,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View Job","depth":26,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"New","depth":21,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"CircleCI","depth":23,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"Today at 6:18:57 PM","depth":23,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6:18 PM","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-US:","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"[3da5aed](","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":24,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":25,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":") - Revert \"[JY-205680](","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502)\" (#503) (steliyan-g)","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reply in thread","depth":25,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":25,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Today at 6:19:24 PM","depth":24,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6:19","depth":25,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-EU:","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"[3da5aed](","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":24,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":25,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":") - Revert \"[JY-205680](","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502)\" (#503) (steliyan-g)","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reply in thread","depth":25,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":25,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"","depth":23,"on_screen":true,"value":"","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Channel releases","depth":11,"on_screen":true,"role_description":"text"}]...
|
-9148023435312877905
|
-128012899957948705
|
click
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Stefka Stoyanova
Ves
Galya Dimitrova
Aneliya Angelova
Vasil Vasilev
James Graham
Nikolay Ivanov
Lukas Kovalik
you
Jira Cloud
Toast
Messages
Messages
Files
Files
Bookmarks
Bookmarks
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Today at 4:33:51 PM
4:33
New commits deployed to Prophet Prod-EU:
[74673da](
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
) - [JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502) (steliyan-g)
GitHub
APP
Today at 5:03:19 PM
5:03 PM
3 new commits
3 new commits
pushed to
master
master
by
mihailmihaylovjiminny
mihailmihaylovjiminny
beb8e387
beb8e387
- JY-20817: Fix deleting old tracks
8f177131
8f177131
- Merge branch 'master' into JY-20817-fix-deleting-old-tracks
[CREDIT_CARD]
- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks
jiminny/app
jiminny/app
|
Added by
GitHub
GitHub
CircleCI
APP
Today at 5:29:41 PM
5:29 PM
Deployment Successful! tada emoji
Deployment Successful!
Project
: app
When
: 05/07/2026 14:29:40
Tag
:
View Job
View Job
New
CircleCI
APP
Today at 6:18:57 PM
6:18 PM
New commits deployed to Prophet Prod-US:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Today at 6:19:24 PM
6:19
New commits deployed to Prophet Prod-EU:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Channel releases
Firefox FileEditView€ <→ C= [1 Google MeetHistoryBookmarksProfilesToolsWindow Help= meet.google.com/landing?authuser=[EMAIL]82516:22 PM • Thu, May 7+Meetings0 CallsSecure video conferencingfor everyoneConnect, collaborate, and celebrate from anywhere withGoogle MeetEk New meetingEnter a code or nicknameJoin |Get a link you can shareClick New meeting to get a link you can send to peopleyou want to meet with...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
6103
|
248
|
3
|
2026-05-07T17:35:51.868098+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778175351868_m2.jpg...
|
Slack
|
releases (Channel) - Jiminny Inc - 3 new items - S releases (Channel) - Jiminny Inc - 3 new items - Slack...
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Stefka Stoyanova
Ves
Galya Dimitrova
Aneliya Angelova
Vasil Vasilev
James Graham
Nikolay Ivanov
Lukas Kovalik
you
Jira Cloud
Toast
Messages
Messages
Files
Files
Bookmarks
Bookmarks
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Today at 4:33:51 PM
4:33
New commits deployed to Prophet Prod-EU:
[74673da](
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
) - [JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502) (steliyan-g)
GitHub
APP
Today at 5:03:19 PM
5:03 PM
3 new commits
3 new commits
pushed to
master
master
by
mihailmihaylovjiminny
mihailmihaylovjiminny
beb8e387
beb8e387
- JY-20817: Fix deleting old tracks
8f177131
8f177131
- Merge branch 'master' into JY-20817-fix-deleting-old-tracks
[CREDIT_CARD]
- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks
jiminny/app
jiminny/app
|
Added by
GitHub
GitHub
CircleCI
APP
Today at 5:29:41 PM
5:29 PM
Deployment Successful! tada emoji
Deployment Successful!
Project
: app
When
: 05/07/2026 14:29:40
Tag
:
View Job
View Job
New
CircleCI
APP
Today at 6:18:57 PM
6:18 PM
New commits deployed to Prophet Prod-US:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Today at 6:19:24 PM
6:19
New commits deployed to Prophet Prod-EU:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Channel releases...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"bounds":{"left":0.0056515955,"top":0.058260176,"width":0.011968086,"height":0.028731046},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"bounds":{"left":0.0029920214,"top":0.10055866,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"bounds":{"left":0.0066489363,"top":0.13806863,"width":0.009973404,"height":0.0103751},"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"bounds":{"left":0.0029920214,"top":0.15482841,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"bounds":{"left":0.0076462766,"top":0.19233839,"width":0.007978723,"height":0.0103751},"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"bounds":{"left":0.0029920214,"top":0.20909816,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"bounds":{"left":0.004986702,"top":0.24660814,"width":0.012965426,"height":0.0103751},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.005319149,"top":0.24660814,"width":0.0026595744,"height":0.011173184}},{"char_start":1,"char_count":7,"bounds":{"left":0.0076462766,"top":0.24660814,"width":0.010638298,"height":0.011173184}}],"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"bounds":{"left":0.0029920214,"top":0.26336792,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"bounds":{"left":0.0076462766,"top":0.3008779,"width":0.0076462766,"height":0.0103751},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.007978723,"top":0.3008779,"width":0.0019946808,"height":0.011173184}},{"char_start":1,"char_count":4,"bounds":{"left":0.009973404,"top":0.3008779,"width":0.0056515955,"height":0.011173184}}],"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"bounds":{"left":0.0029920214,"top":0.31763768,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"bounds":{"left":0.00731383,"top":0.35514766,"width":0.008643617,"height":0.0103751},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.00731383,"top":0.35514766,"width":0.0019946808,"height":0.011173184}},{"char_start":1,"char_count":4,"bounds":{"left":0.00930851,"top":0.35514766,"width":0.0066489363,"height":0.011173184}}],"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"bounds":{"left":0.0029920214,"top":0.3719074,"width":0.017287234,"height":0.054269753},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"bounds":{"left":0.006981383,"top":0.4094174,"width":0.008976064,"height":0.0103751},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.00731383,"top":0.4094174,"width":0.0033244682,"height":0.011173184}},{"char_start":1,"char_count":3,"bounds":{"left":0.010638298,"top":0.4094174,"width":0.0056515955,"height":0.011173184}}],"role_description":"text"},{"role":"AXStaticText","text":"Unreads","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"bugs","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":23,"bounds":{"left":0.042220745,"top":0.09177973,"width":0.027593086,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":23,"bounds":{"left":0.042220745,"top":0.10055866,"width":0.025598405,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.10055866,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":10,"bounds":{"left":0.04488032,"top":0.10055866,"width":0.022938829,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"general","depth":23,"bounds":{"left":0.042220745,"top":0.12290503,"width":0.015957447,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.12290503,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":6,"bounds":{"left":0.04488032,"top":0.12290503,"width":0.013297873,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":23,"bounds":{"left":0.042220745,"top":0.1452514,"width":0.022938829,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.1452514,"width":0.0013297872,"height":0.014365523}},{"char_start":1,"char_count":9,"bounds":{"left":0.043550532,"top":0.1452514,"width":0.021609042,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":23,"bounds":{"left":0.042220745,"top":0.16759777,"width":0.034906916,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.16759777,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.045212764,"top":0.16759777,"width":0.031914894,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":23,"bounds":{"left":0.042220745,"top":0.18994413,"width":0.039893616,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.18994413,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.045212764,"top":0.18994413,"width":0.036901597,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"random","depth":23,"bounds":{"left":0.042220745,"top":0.2122905,"width":0.01662234,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.2122905,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":5,"bounds":{"left":0.044215426,"top":0.2122905,"width":0.014960106,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":23,"bounds":{"left":0.042220745,"top":0.23463687,"width":0.01761968,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.23463687,"width":0.0016622341,"height":0.014365523}},{"char_start":1,"char_count":7,"bounds":{"left":0.043882977,"top":0.23463687,"width":0.015957447,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"sofia-office","depth":23,"bounds":{"left":0.042220745,"top":0.25698325,"width":0.024268618,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.25698325,"width":0.0023271276,"height":0.014365523}},{"char_start":1,"char_count":11,"bounds":{"left":0.04454787,"top":0.25698325,"width":0.021941489,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"support","depth":23,"bounds":{"left":0.042220745,"top":0.2793296,"width":0.016954787,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.2793296,"width":0.0023271276,"height":0.014365523}},{"char_start":1,"char_count":6,"bounds":{"left":0.04454787,"top":0.2793296,"width":0.01462766,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":23,"bounds":{"left":0.042220745,"top":0.30167598,"width":0.024268618,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.30167598,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":9,"bounds":{"left":0.044215426,"top":0.30167598,"width":0.022606382,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":23,"bounds":{"left":0.042220745,"top":0.32402235,"width":0.04488032,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.32402235,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":20,"bounds":{"left":0.044215426,"top":0.32402235,"width":0.04720745,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"bounds":{"left":0.042220745,"top":0.37669593,"width":0.03756649,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.37669593,"width":0.0033244682,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.045545213,"top":0.37669593,"width":0.034242023,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"bounds":{"left":0.07945479,"top":0.37669593,"width":0.0063164895,"height":0.014365523},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"bounds":{"left":0.08211436,"top":0.37669593,"width":0.014295213,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.08211436,"top":0.37669593,"width":0.0039893617,"height":0.014365523}},{"char_start":1,"char_count":13,"bounds":{"left":0.08610372,"top":0.37669593,"width":0.028922873,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"bounds":{"left":0.09607713,"top":0.3942538,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"bounds":{"left":0.09607713,"top":0.3942538,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11735372,"top":0.37669593,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":16,"bounds":{"left":0.1200133,"top":0.37669593,"width":0.03557181,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":23,"bounds":{"left":0.042220745,"top":0.3990423,"width":0.028922873,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.3990423,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":11,"bounds":{"left":0.04488032,"top":0.3990423,"width":0.026263298,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":23,"bounds":{"left":0.042220745,"top":0.42138866,"width":0.03756649,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.42138866,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.04488032,"top":0.42138866,"width":0.03523936,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Ves","depth":23,"bounds":{"left":0.042220745,"top":0.44373503,"width":0.0076462766,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.44373503,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":2,"bounds":{"left":0.045212764,"top":0.44373503,"width":0.004986702,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":23,"bounds":{"left":0.042220745,"top":0.4660814,"width":0.034906916,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.4660814,"width":0.003656915,"height":0.014365523}},{"char_start":1,"char_count":14,"bounds":{"left":0.045877658,"top":0.4660814,"width":0.03158245,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"bounds":{"left":0.042220745,"top":0.4884278,"width":0.03756649,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.4884278,"width":0.0033244682,"height":0.014365523}},{"char_start":1,"char_count":15,"bounds":{"left":0.045545213,"top":0.4884278,"width":0.034242023,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":23,"bounds":{"left":0.042220745,"top":0.51077414,"width":0.026263298,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.51077414,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":12,"bounds":{"left":0.045212764,"top":0.51077414,"width":0.023271276,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"James Graham","depth":23,"bounds":{"left":0.042220745,"top":0.5331205,"width":0.031914894,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.5331205,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":11,"bounds":{"left":0.044215426,"top":0.5331205,"width":0.029920213,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":23,"bounds":{"left":0.042220745,"top":0.5554669,"width":0.031914894,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.5554669,"width":0.0039893617,"height":0.014365523}},{"char_start":1,"char_count":13,"bounds":{"left":0.046210106,"top":0.5554669,"width":0.027925532,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Lukas Kovalik","depth":23,"bounds":{"left":0.042220745,"top":0.57781327,"width":0.02925532,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.57781327,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":12,"bounds":{"left":0.04488032,"top":0.57781327,"width":0.026928192,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"you","depth":23,"bounds":{"left":0.07413564,"top":0.57781327,"width":0.0063164895,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.07446808,"top":0.57781327,"width":0.0023271276,"height":0.014365523}},{"char_start":1,"char_count":2,"bounds":{"left":0.07679521,"top":0.57781327,"width":0.0056515955,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":23,"bounds":{"left":0.042220745,"top":0.63048685,"width":0.021609042,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.63048685,"width":0.0019946808,"height":0.014365523}},{"char_start":1,"char_count":9,"bounds":{"left":0.044215426,"top":0.63048685,"width":0.019946808,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Toast","depth":23,"bounds":{"left":0.042220745,"top":0.6528332,"width":0.011635638,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.042220745,"top":0.6528332,"width":0.0023271276,"height":0.014365523}},{"char_start":1,"char_count":4,"bounds":{"left":0.04454787,"top":0.6528332,"width":0.00930851,"height":0.014365523}}],"role_description":"text"},{"role":"AXRadioButton","text":"Messages","depth":17,"bounds":{"left":0.10206117,"top":0.09177973,"width":0.030585106,"height":0.030327214},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Messages","depth":19,"bounds":{"left":0.111369684,"top":0.10055866,"width":0.01861702,"height":0.012769354},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.111369684,"top":0.10055866,"width":0.0039893617,"height":0.012769354}},{"char_start":1,"char_count":7,"bounds":{"left":0.115359046,"top":0.10055866,"width":0.014960106,"height":0.012769354}}],"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":17,"bounds":{"left":0.13397606,"top":0.09177973,"width":0.020944148,"height":0.030327214},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":19,"bounds":{"left":0.14328457,"top":0.10055866,"width":0.008976064,"height":0.012769354},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.14328457,"top":0.10055866,"width":0.0026595744,"height":0.012769354}},{"char_start":1,"char_count":4,"bounds":{"left":0.14594415,"top":0.10055866,"width":0.0063164895,"height":0.012769354}}],"role_description":"text"},{"role":"AXRadioButton","text":"Bookmarks","depth":17,"bounds":{"left":0.15591756,"top":0.09177973,"width":0.033909574,"height":0.030327214},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Bookmarks","depth":19,"bounds":{"left":0.16522606,"top":0.10055866,"width":0.021941489,"height":0.012769354},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.16555852,"top":0.10055866,"width":0.0029920214,"height":0.012769354}},{"char_start":1,"char_count":8,"bounds":{"left":0.16821809,"top":0.10055866,"width":0.019281914,"height":0.012769354}}],"role_description":"text"},{"role":"AXPopUpButton","text":"Add and Edit Channel Tabs","depth":17,"bounds":{"left":0.19115691,"top":0.09177973,"width":0.010638298,"height":0.030327214},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Canvas","depth":17,"bounds":{"left":0.096409574,"top":0.0518755,"width":0.015625,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"List","depth":17,"bounds":{"left":0.096409574,"top":0.0518755,"width":0.0076462766,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":17,"bounds":{"left":0.096409574,"top":0.0518755,"width":0.013962766,"height":0.0007980846},"on_screen":true,"role_description":"text"},{"role":"AXPopUpButton","text":"Jump to date","depth":22,"bounds":{"left":0.14594415,"top":0.12689546,"width":0.025265958,"height":0.022346368},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Today at 4:33:51 PM","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"4:33","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-EU:","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"[74673da](","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":") - [JY-205680](","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502) (steliyan-g)","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"GitHub","depth":23,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Today at 5:03:19 PM","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5:03 PM","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"3 new commits","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3 new commits","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"pushed to","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"master","depth":24,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"master","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"by","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"mihailmihaylovjiminny","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"mihailmihaylovjiminny","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"beb8e387","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"beb8e387","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- JY-20817: Fix deleting old tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"8f177131","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8f177131","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- Merge branch 'master' into JY-20817-fix-deleting-old-tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"12295204","depth":26,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"12295204","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"jiminny/app","depth":25,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"jiminny/app","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"|","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Added by","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"GitHub","depth":25,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"GitHub","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"CircleCI","depth":23,"bounds":{"left":0.11801862,"top":0.11572227,"width":0.01761968,"height":0.009577015},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"bounds":{"left":0.13796543,"top":0.11572227,"width":0.0066489363,"height":0.005586592},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.14527926,"top":0.11572227,"width":0.0026595744,"height":0.007980846},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"Today at 5:29:41 PM","depth":23,"bounds":{"left":0.14793883,"top":0.11572227,"width":0.015292553,"height":0.0071827616},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5:29 PM","depth":24,"bounds":{"left":0.14793883,"top":0.11572227,"width":0.015292553,"height":0.0071827616},"on_screen":true,"role_description":"text"},{"role":"AXHeading","text":"Deployment Successful! tada emoji","depth":23,"bounds":{"left":0.11801862,"top":0.12849163,"width":0.095744684,"height":0.017557861},"on_screen":true,"role_description":"heading"},{"role":"AXStaticText","text":"Deployment Successful!","depth":25,"bounds":{"left":0.11801862,"top":0.1300878,"width":0.054853722,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.1300878,"width":0.0039893617,"height":0.014365523}},{"char_start":1,"char_count":21,"bounds":{"left":0.12200798,"top":0.1300878,"width":0.049867023,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"Project","depth":24,"bounds":{"left":0.11801862,"top":0.15722266,"width":0.015957447,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.15722266,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":6,"bounds":{"left":0.12101064,"top":0.15722266,"width":0.012965426,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":": app","depth":24,"bounds":{"left":0.11801862,"top":0.15722266,"width":0.017287234,"height":0.031923383},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.13397606,"top":0.15722266,"width":0.0013297872,"height":0.014365523}},{"char_start":1,"char_count":4,"bounds":{"left":0.11801862,"top":0.17478053,"width":0.00831117,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":"When","depth":24,"bounds":{"left":0.14926861,"top":0.15722266,"width":0.013630319,"height":0.014365523},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":": 05/07/2026 14:29:40","depth":24,"bounds":{"left":0.14926861,"top":0.15722266,"width":0.024601065,"height":0.049481247},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.16289894,"top":0.15722266,"width":0.0013297872,"height":0.014365523}},{"char_start":1,"char_count":20,"bounds":{"left":0.14926861,"top":0.17478053,"width":0.024933511,"height":0.031923383}}],"role_description":"text"},{"role":"AXStaticText","text":"Tag","depth":24,"bounds":{"left":0.11801862,"top":0.20989625,"width":0.0076462766,"height":0.014365523},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.20989625,"width":0.0026595744,"height":0.014365523}},{"char_start":1,"char_count":2,"bounds":{"left":0.120678194,"top":0.20989625,"width":0.004986702,"height":0.014365523}}],"role_description":"text"},{"role":"AXStaticText","text":":","depth":24,"bounds":{"left":0.12533244,"top":0.20989625,"width":0.0016622341,"height":0.014365523},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"View Job","depth":24,"bounds":{"left":0.11801862,"top":0.2386273,"width":0.023271276,"height":0.022346368},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View Job","depth":26,"bounds":{"left":0.12101064,"top":0.24261771,"width":0.017287234,"height":0.012769354},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.12101064,"top":0.2434158,"width":0.0029920214,"height":0.012769354}},{"char_start":1,"char_count":7,"bounds":{"left":0.12400266,"top":0.2434158,"width":0.01462766,"height":0.012769354}}],"role_description":"text"},{"role":"AXStaticText","text":"New","depth":21,"bounds":{"left":0.20478724,"top":0.2601756,"width":0.00930851,"height":0.012769354},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"CircleCI","depth":23,"bounds":{"left":0.11801862,"top":0.27055067,"width":0.01761968,"height":0.017557861},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"bounds":{"left":0.13796543,"top":0.2745411,"width":0.0066489363,"height":0.009577015},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.14527926,"top":0.27214685,"width":0.0026595744,"height":0.014365523},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"Today at 6:18:57 PM","depth":23,"bounds":{"left":0.14793883,"top":0.2745411,"width":0.015292553,"height":0.011173184},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6:18 PM","depth":24,"bounds":{"left":0.14793883,"top":0.2745411,"width":0.015292553,"height":0.011173184},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.14793883,"top":0.2745411,"width":0.0026595744,"height":0.011971269}},{"char_start":1,"char_count":6,"bounds":{"left":0.15026596,"top":0.2745411,"width":0.012965426,"height":0.011971269}}],"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-US:","depth":24,"bounds":{"left":0.11801862,"top":0.2897047,"width":0.089428194,"height":0.031923383},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.2897047,"width":0.003656915,"height":0.014365523}},{"char_start":1,"char_count":39,"bounds":{"left":0.11801862,"top":0.2897047,"width":0.089428194,"height":0.031923383}}],"role_description":"text"},{"role":"AXStaticText","text":"[3da5aed](","depth":24,"bounds":{"left":0.11801862,"top":0.32482043,"width":0.021941489,"height":0.031923383},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11801862,"top":0.32482043,"width":0.0016622341,"height":0.014365523}},{"char_start":1,"char_count":9,"bounds":{"left":0.11801862,"top":0.32482043,"width":0.021941489,"height":0.031923383}}],"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":24,"bounds":{"left":0.11801862,"top":0.3423783,"width":0.09507979,"height":0.049481247},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":25,"bounds":{"left":0.11801862,"top":0.3423783,"width":0.09507979,"height":0.049481247},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.11934841,"top":0.3423783,"width":0.0029920214,"height":0.014365523}},{"char_start":1,"char_count":81,"bounds":{"left":0.11801862,"top":0.3423783,"width":0.09541223,"height":0.049481247}}],"role_description":"text"},{"role":"AXStaticText","text":") - Revert \"[JY-205680](","depth":24,"bounds":{"left":0.11801862,"top":0.377494,"width":0.06981383,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"bounds":{"left":0.11801862,"top":0.39505187,"width":0.087765954,"height":0.031923383},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"bounds":{"left":0.11801862,"top":0.39505187,"width":0.087765954,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502)\" (#503) (steliyan-g)","depth":24,"bounds":{"left":0.11801862,"top":0.41260973,"width":0.080784574,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"bounds":{"left":0.12865691,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"bounds":{"left":0.1392952,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"bounds":{"left":0.14993352,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"bounds":{"left":0.16057181,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reply in thread","depth":25,"bounds":{"left":0.17121011,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":25,"bounds":{"left":0.1818484,"top":0.25698325,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":25,"bounds":{"left":0.21476063,"top":0.25698325,"width":0.0003324468,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.21476063,"top":0.25698325,"width":0.0003324468,"height":0.025538707},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Today at 6:19:24 PM","depth":24,"bounds":{"left":0.107380316,"top":0.45650437,"width":0.007978723,"height":0.011173184},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6:19","depth":25,"bounds":{"left":0.107380316,"top":0.45650437,"width":0.007978723,"height":0.011173184},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"New commits deployed to Prophet Prod-EU:","depth":24,"bounds":{"left":0.11801862,"top":0.45411015,"width":0.089428194,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"[3da5aed](","depth":24,"bounds":{"left":0.11801862,"top":0.48922586,"width":0.021941489,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":24,"bounds":{"left":0.11801862,"top":0.5067837,"width":0.09507979,"height":0.049481247},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61","depth":25,"bounds":{"left":0.11801862,"top":0.5067837,"width":0.09507979,"height":0.049481247},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":") - Revert \"[JY-205680](","depth":24,"bounds":{"left":0.11801862,"top":0.54189944,"width":0.06981383,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":24,"bounds":{"left":0.11801862,"top":0.5594573,"width":0.087765954,"height":0.031923383},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-205680","depth":25,"bounds":{"left":0.11801862,"top":0.5594573,"width":0.087765954,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"): Relax action items assignee (#502)\" (#503) (steliyan-g)","depth":24,"bounds":{"left":0.11801862,"top":0.57701516,"width":0.080784574,"height":0.031923383},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"bounds":{"left":0.12865691,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"bounds":{"left":0.1392952,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"bounds":{"left":0.14993352,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"bounds":{"left":0.16057181,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reply in thread","depth":25,"bounds":{"left":0.17121011,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":25,"bounds":{"left":0.1818484,"top":0.4293695,"width":0.010638298,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":25,"bounds":{"left":0.21476063,"top":0.4293695,"width":0.0003324468,"height":0.025538707},"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.21476063,"top":0.4293695,"width":0.0003324468,"height":0.025538707},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"","depth":23,"bounds":{"left":0.10372341,"top":0.6272945,"width":0.109707445,"height":0.030327214},"on_screen":true,"value":"","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Channel releases","depth":11,"bounds":{"left":0.0,"top":0.7126895,"width":0.017287234,"height":0.0007980846},"on_screen":true,"role_description":"text"}]...
|
-9148023435312877905
|
-128012899957948705
|
visual_change
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Stefka Stoyanova
Ves
Galya Dimitrova
Aneliya Angelova
Vasil Vasilev
James Graham
Nikolay Ivanov
Lukas Kovalik
you
Jira Cloud
Toast
Messages
Messages
Files
Files
Bookmarks
Bookmarks
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Today at 4:33:51 PM
4:33
New commits deployed to Prophet Prod-EU:
[74673da](
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
https://github.com/jiminny/prophet/commit/74673da5893290f0116af75beb652b3e4b3dce10
) - [JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502) (steliyan-g)
GitHub
APP
Today at 5:03:19 PM
5:03 PM
3 new commits
3 new commits
pushed to
master
master
by
mihailmihaylovjiminny
mihailmihaylovjiminny
beb8e387
beb8e387
- JY-20817: Fix deleting old tracks
8f177131
8f177131
- Merge branch 'master' into JY-20817-fix-deleting-old-tracks
[CREDIT_CARD]
- Merge pull request #12052 from jiminny/JY-20817-fix-deleting-old-tracks
jiminny/app
jiminny/app
|
Added by
GitHub
GitHub
CircleCI
APP
Today at 5:29:41 PM
5:29 PM
Deployment Successful! tada emoji
Deployment Successful!
Project
: app
When
: 05/07/2026 14:29:40
Tag
:
View Job
View Job
New
CircleCI
APP
Today at 6:18:57 PM
6:18 PM
New commits deployed to Prophet Prod-US:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Today at 6:19:24 PM
6:19
New commits deployed to Prophet Prod-EU:
[3da5aed](
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
https://github.com/jiminny/prophet/commit/3da5aed8434b1d6381a35317d9ca45fd7c751e61
) - Revert "[JY-205680](
https://jiminny.atlassian.net/browse/JY-205680
https://jiminny.atlassian.net/browse/JY-205680
): Relax action items assignee (#502)" (#503) (steliyan-g)
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Channel releases
khl100% 12Thu 7 May 20:35:51+0 ..@biectDetach.onpT DeleteCrmEntityTrait.php XRateLimitException.phpClient.php© ResponseException.php© HubspotPaginationService.php© PaginationConfig.phplubspotsinglesyncstrategy.png©)Importopportunitybatch.png© HydrateCrmDataByExternalCallidJob.phg)conterencecrmmatcherJob.onpatchActivitycrmData.php© CrmActivityService.php© CachedCrmServiceDecorator.phpvice.phpServicelntertace.php© OpportunitySyncTest.phpm A2 л v12ActivityMoreSlackcalVIewJiminny ... ~# engineering# general# jiminny-bg# platform-tickets# product launches# random# releases# soha-ofhce# support# thank-vous# the people of jimi..ó- Direct messages3 Aneliya Angelova. ...8 Stovan Tanev €Stefka Stoyanovaal Ves% Galya Dimitrova. Aneliva Angelova6 Vasil Vasilev&o James Grahamed Nikolay IvanovLukas Kovalik y...#:Apps-T lira Cloud• Toast© SyncOpportunities.Job© SyncOpportunitv.ph© SyncProfileMetadata.c@ SvncTeamFields.Job.ol©SvncTeamMetadata.ol(C) Uodate@ooortunitvSoC) UodateStade. ohoN DealRisksM Mailbox> M MeetinaBot)M Middlewarec) LandleLubsnotPatel ir(C) Patel imited nhn> M StreaminalmistonWindowHelp@ Describe what you are looking forw releases9 22MessagesC Files& BookmarksDeplovmentTodayv!Project:appWhen.05/07/2026 14:29:40lag.View JobCircleCl APP 6:18 PMNew commits deployed to Prophet P[URL_WITH_CREDENTIALS] {return;ScrmObiect = Sthis->qetEntityType@:SentitvidField = Scrmobnect->value . '10'*nds. 1.5 minutes. 3 minutes© ProviderRateLimiter.php X = custom.logElaravel.log4 SF jiminny@localhost]A HS_local [jiminny@localhost]tiò accounts jiminnyA console (PROD]# console [eu)A console [STAGING]use..class Providerratelimitenorotected RateLimiter SrateLimiter:public function __construct(RateLimiter $rateLimiter)(...}public function canMakeRequest(RateLimited $provider): bool/** Ovar RateLimitInterface $rateLimit */foreach (Sprovider->getRateLimits as $rateLimit) ‹$key = SrateLimit->getKeyO;if (Sthis->rateLimiter->tooManyAttempts($key, SrateLimit->getQuotaO)) {return true:pubLic tunction requestavallableln kateLimited Sprovider: 1ntreturn Sprovider->getRateLimits(->isNotEmptv@Sproviden->getRateLimits@(RateLimitInterface SrateLimit): int => Sthis->rateLimiter->availableIn(SrateLir->maxonublic function incrementReauestCountRateLimited Sorovider)• void** Qvan Ratel imitIntenface Sratelsimit *íforeach (Sprovider->getRateLimits as $rateLimit){Sthicesnasmit-›getKey, $rateLimit->getWindow0):CascadeHubspot Rate LimitingHubSpot Search RateSearched •Delete*Entity" in apo.Jobs (1) )Analyzed app/Jobs/Crm/DeleteRead DeleteAccountJob.phpThouahts >kead veryacuvitycrmlaskJob.pnpThoughtsCommand cd, arep• cd /Users/lukas/jiminny/app && grep -n "function verifyTaskExists" app/Services/Crm/Hubspot/Service.php2040:public function verifvtaskExists(Activity Sactivity: boolRead Service.nho #|2035-20631o cd /Users/lukas/jiminny/app &й grep -rn "→»find)'->find\(|->searchForPhoneNumber\|->searchCalls\|->matchByName\ |-app/Jobs 2>/dev/null | grep -vDeleteCrmEntitv.lob and its relatedliobs (DeleteAccountloh. DeleteContactloh. Deleteleadloh. Deletelonortunitviloh) do NoTneed the middleware.Hore's why.JobHubSpot API CallUses Search?Needs MiddlewareDeleteAccountJotDeleteContactJobDeletel.ead.inhNoneNoneNoneDeleteOpportunityJobNoneVerifvActivitvCrmTack.iohverifyTaskExists() → getEngagementData()No Icinale GET)The VerifyActivityCrmTaskJob calls ScrmService->verifyTaskExists() which uses getEngagementData() - a single GET requestfor a specific engagement ID. This does NOT use the search() method we centralized, so it won't throw RateLimitException from ourThe Delete jobs only• Query local database via repositories• Dispatch Veritvact ivitvcrmlaskjo.• Perform DR transactionsNo middleware needed for these jobs.o 1l «* Reiect alliiAccent allibut that was the whole poinC° Adantivefo 4 spaces...
|
6092
|
NULL
|
NULL
|
NULL
|
|
24782
|
1038
|
0
|
2026-05-12T10:01:45.091039+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778580105091_m1.jpg...
|
Slack
|
Stoyan Tanev (DM) - Jiminny Inc - 4 new items - Sl Stoyan Tanev (DM) - Jiminny Inc - 4 new items - Slack...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
All, 4 unread
DMs
Add new tab
Galya Dimitrova
DM
Mark as unread
Clear
More actions
И другата седмица имаме презднтации пред борда в Лондон и съм до никъде
Galya Dimitrova
Reacted in
DM
35 mins
You:
ако трябва да се пипне и в кода ще си направя тикет
1 reaction, react with +1 emoji
1
Messenger Toast
App
11:52 AM
#12066 JY-20725 add HS rate limit handling on activities rematching - Comment Review
Steliyan Georgiev
DM
11:51 AM
ще го видя
Steliyan Georgiev
Reacted in
DM
11:49 AM
You:
ето го и репорт
…
1 reaction, react with +1 emoji
1
Petko Kashinski
DM
10:55 AM
Huddle ?
Reminder
DM
Incomplete
9:00 AM
Petko Kashinski:
playbackVisited
Mark complete
Yesterday
Reminder
DM
Incomplete
Yesterday
Galya Dimitrova:
привет, понеже другия спринт ще си продължиш с каквото остана по репортите, можеш ли днес или утре да видиш тези двете неща и да ми кажеш естимейт за тях:
…
Mark complete
Aneliya Angelova
DM
Replied
Yesterday
Лукаш за Hubspot за синковете вече се използва тази команда нали?
…
Jira Cloud
App
Yesterday
[no preview available]
Stefka Stoyanova
DM
Reacted
Yesterday
Лукаш, ще сложиш ли естимейт на
https://jiminny.atlassian.net/browse/JY-20818...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"All, 4 unread","depth":19,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"DMs","depth":19,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"Add new tab","depth":20,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Galya Dimitrova","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Mark as unread","depth":23,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Clear","depth":23,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":23,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"И другата седмица имаме презднтации пред борда в Лондон и съм до никъде","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Reacted in","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"35 mins","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"You:","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"ако трябва да се пипне и в кода ще си направя тикет","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"1 reaction, react with +1 emoji","depth":23,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Messenger Toast","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"App","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11:52 AM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"#12066 JY-20725 add HS rate limit handling on activities rematching - Comment Review","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11:51 AM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"ще го видя","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Reacted in","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"11:49 AM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"You:","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"ето го и репорт","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"…","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"1 reaction, react with +1 emoji","depth":23,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Petko Kashinski","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"10:55 AM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Huddle ?","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Reminder","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Incomplete","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"9:00 AM","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Petko Kashinski:","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"playbackVisited","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Mark complete","depth":23,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Yesterday","depth":21,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Reminder","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"bounds":{"left":0.5798611,"top":0.0,"width":0.015972223,"height":0.017777778},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Incomplete","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Yesterday","depth":22,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova:","depth":23,"bounds":{"left":0.54930556,"top":0.0,"width":0.079166666,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"привет, понеже другия спринт ще си продължиш с каквото остана по репортите, можеш ли днес или утре да видиш тези двете неща и да ми кажеш естимейт за тях:","depth":23,"bounds":{"left":0.54930556,"top":0.0,"width":0.18125,"height":0.057777777},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.62777776,"top":0.0,"width":0.00625,"height":0.02}},{"char_start":1,"char_count":153,"bounds":{"left":0.54930556,"top":0.0,"width":0.18194444,"height":0.11777778}}],"role_description":"text"},{"role":"AXStaticText","text":"…","depth":23,"bounds":{"left":0.71944445,"top":0.0,"width":0.008333334,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Mark complete","depth":23,"bounds":{"left":0.54930556,"top":0.0,"width":0.08958333,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Aneliya Angelova","depth":22,"bounds":{"left":0.5798611,"top":0.0,"width":0.07013889,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"bounds":{"left":0.5798611,"top":0.0,"width":0.015277778,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Replied","depth":22,"bounds":{"left":0.65694445,"top":0.0,"width":0.027083334,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Yesterday","depth":22,"bounds":{"left":0.6923611,"top":0.0,"width":0.038194444,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Лукаш за Hubspot за синковете вече се използва тази команда нали?","depth":23,"bounds":{"left":0.54930556,"top":0.0,"width":0.17777778,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"…","depth":23,"bounds":{"left":0.7034722,"top":0.0,"width":0.008333334,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":22,"bounds":{"left":0.5798611,"top":0.0,"width":0.045833334,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"App","depth":22,"bounds":{"left":0.5798611,"top":0.0,"width":0.016666668,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Yesterday","depth":22,"bounds":{"left":0.6923611,"top":0.0,"width":0.038194444,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"[no preview available]","depth":23,"bounds":{"left":0.54930556,"top":0.0,"width":0.09861111,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":22,"bounds":{"left":0.5798611,"top":0.0,"width":0.054166667,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"DM","depth":22,"bounds":{"left":0.5798611,"top":0.0,"width":0.015277778,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Reacted","depth":22,"bounds":{"left":0.6402778,"top":0.0,"width":0.029861111,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":22,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Yesterday","depth":22,"bounds":{"left":0.6923611,"top":0.0,"width":0.038194444,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Лукаш, ще сложиш ли естимейт на","depth":23,"bounds":{"left":0.54930556,"top":0.0,"width":0.1736111,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-20818","depth":23,"bounds":{"left":0.54930556,"top":0.0,"width":0.18125,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-9147806109870960616
|
6726698622267517094
|
click
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
All, 4 unread
DMs
Add new tab
Galya Dimitrova
DM
Mark as unread
Clear
More actions
И другата седмица имаме презднтации пред борда в Лондон и съм до никъде
Galya Dimitrova
Reacted in
DM
35 mins
You:
ако трябва да се пипне и в кода ще си направя тикет
1 reaction, react with +1 emoji
1
Messenger Toast
App
11:52 AM
#12066 JY-20725 add HS rate limit handling on activities rematching - Comment Review
Steliyan Georgiev
DM
11:51 AM
ще го видя
Steliyan Georgiev
Reacted in
DM
11:49 AM
You:
ето го и репорт
…
1 reaction, react with +1 emoji
1
Petko Kashinski
DM
10:55 AM
Huddle ?
Reminder
DM
Incomplete
9:00 AM
Petko Kashinski:
playbackVisited
Mark complete
Yesterday
Reminder
DM
Incomplete
Yesterday
Galya Dimitrova:
привет, понеже другия спринт ще си продължиш с каквото остана по репортите, можеш ли днес или утре да видиш тези двете неща и да ми кажеш естимейт за тях:
…
Mark complete
Aneliya Angelova
DM
Replied
Yesterday
Лукаш за Hubspot за синковете вече се използва тази команда нали?
…
Jira Cloud
App
Yesterday
[no preview available]
Stefka Stoyanova
DM
Reacted
Yesterday
Лукаш, ще сложиш ли естимейт на
https://jiminny.atlassian.net/browse/JY-20818
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp•DOCKER₴81DEV (-zsh)O $2APP (-zsh)883→ 0 liolec2-user@ip-10-30-129-190:~ec2-user@ip-10-30-129-..X4• Support Daily - in 1h 59 m100% C78• Tue 12 May 13:01:47181-zshX5screenpipe"- 286-zsh+Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ dockerexec-it $(dockerps --format "{{.ID}}" --filter "name=ecs-worker" | head -1) /bin/bash -c "cd /home/jiminny && bash"root@a3efaa2235c4:/home/jiminny# php artisantinkerPsy Shellv0.12.21 (PHP8.3.30cli) by Justin HilemanNew PHPmanualis available (latest:3.0.5).Update with"doc --update-manual'> Sresult = AutomatedReportResult::find(1872);[!] Aliasing'AutomatedReportResult' to'Jiminny\Models\AutomatedReportResult' for this Tinker session.Jiminny\Models\AutomatedReportResult{#15863id:1872,uuid: b"CO-0,/a\e¢Ht°ão11",report_id:54,name: "Coaching Profiles - 6 - 12 Apr 2026 - Client Success, UK Sales",media_type: "pdf",parent_id: null,status: 2,reason: 0,payload: "["team_id":1, "request_id": "822fa41b-afd3-43a9-a248-86b0e36f3131", "report_type": "coaching_profiles", "media_types": ["pdf","podcast"], "from_date": "2026-04-06T00:00:00+(0- 00- er ), te2uro-0012723:5905050:80, Canldurdt n.m,2), Conseal-5t Se (), requene dets sta ** (, akur -netue 1, meah, TOUyuaae*:apl, imn -ons E° conterrepertsVrepon, reore-pertd:°82272 10- 202-1, 09-0160-k cot6riss, 5,'eus* compt"ted", '"'inestamp" "2026-04-13701:11:48. 648399-00-:00', 's3_url" "S3:V//jiminny.client-dataV/5F0F4810-7e77-4086-8f69-93429ae4d70b\/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD","report_type":"coaching_profiles", "podcast_url":"s3:\Wjiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt","podcast_audio_url":"s3:\//jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70bV/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3","podcast_ssml_url":"s3:\//jiminny.client-data\/Sf0f4810-7e77-4086-8f69-93429ae4d70bVreports\/822fa41b-afd3-43a9-a248-86b0e36f3131-podcast.senl"t": +2026-04-13 01:00:57"requested_at:generated_at: "2026-04-13 01:11:48",sent_at: null,created_at: "2026-04-13 01:00:27",updated_at: "2026-04-13 01:11:48",› Sresult->status = 4;› Sresult->saveO);true> exitINFOGoodbye.root@a3efaa2235c4:/home/jiminny#l...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
24957
|
1048
|
5
|
2026-05-12T10:29:30.583173+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778581770583_m1.jpg...
|
Firefox
|
JY-20773 fix user pilot tracking for automated rep JY-20773 fix user pilot tracking for automated report generated by LakyLak · Pull Request #12024 · jiminny/app — Work...
|
True
|
github.com/jiminny/app/pull/12024
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2Shell•EditViewSessionScriptsProfilesWindowHe iTerm2Shell•EditViewSessionScriptsProfilesWindowHelp>0.alolec2-user@ip-10-30-129-190:~ec2-user@ip-10-30-129-..X4• Support Daily - in 1h 31 m100% C78• Tue 12 May 13:29:30181DOCKER₴81DEV (-zsh)O $2APP (-zsh)883-zshX5screenpipe"-zsh+Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ dockerexec-it $(dockerps --format "{{.ID}}" --filter "name=ecs-worker" | head -1) /bin/bash -c "cd /home/jiminny && bash"root@a3efaa2235c4:/home/jiminny# php artisantinkerPsy Shellv0.12.21 (PHP8.3.30cli) by Justin HilemanNew PHPmanualis available (latest:3.0.5).Update with"doc --update-manual'> Sresult = AutomatedReportResult::find(1872);[!] Aliasing'AutomatedReportResult' to'Jiminny\Models\AutomatedReportResult' for this Tinker session.Jiminny\Models\AutomatedReportResult{#15863id:1872,uuid: b"CO-0,/a\e¢Ht°ão11",report_id:54,name: "Coaching Profiles - 6 - 12 Apr 2026 - Client Success, UK Sales",media_type: "pdf",parent_id: null,status: 2,reason: 0,payload: "["team_id":1, "request_id": "822fa41b-afd3-43a9-a248-86b0e36f3131", "report_type": "coaching_profiles", "media_types": ["pdf","podcast"], "from_date": "2026-04-06T00:00:00+(0- 00- er ), te2uro-0012723:5905050:80, Canldurdt n.m,2), Conseal-5t Se (), requene dets sta ** (, akur -netue 1, meah, TOUyuaae*:apl, imn -ons E° conterrepertsVrepon, reore-pertd:°82272 10- 202-1, 09-0160-k cot6riss, 5,'eus* compt"ted", '"'inestamp" "2026-04-13701:11:48. 648399-00-:00', 's3_url" "S3:V//jiminny.client-dataV/5F0F4810-7e77-4086-8f69-93429ae4d70b\/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD","report_type":"coaching_profiles", "podcast_url":"s3:\Wjiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt","podcast_audio_url":"s3:\//jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70bV/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3","podcast_ssml_url":"s3:\//jiminny.client-data\/Sf0f4810-7e77-4086-8f69-93429ae4d70bVreports\/822fa41b-afd3-43a9-a248-86b0e36f3131-podcast.senl"t": +2026-04-13 01:00:57"requested_at:generated_at: "2026-04-13 01:11:48",sent_at: null,created_at: "2026-04-13 01:00:27",updated_at: "2026-04-13 01:11:48",› Sresult->status = 4;› Sresult->saveO);true> exitINFOGoodbye.root@aßefaa2235c4:/home/jiminny#l...
|
NULL
|
-9147804414247367364
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2Shell•EditViewSessionScriptsProfilesWindowHe iTerm2Shell•EditViewSessionScriptsProfilesWindowHelp>0.alolec2-user@ip-10-30-129-190:~ec2-user@ip-10-30-129-..X4• Support Daily - in 1h 31 m100% C78• Tue 12 May 13:29:30181DOCKER₴81DEV (-zsh)O $2APP (-zsh)883-zshX5screenpipe"-zsh+Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ dockerexec-it $(dockerps --format "{{.ID}}" --filter "name=ecs-worker" | head -1) /bin/bash -c "cd /home/jiminny && bash"root@a3efaa2235c4:/home/jiminny# php artisantinkerPsy Shellv0.12.21 (PHP8.3.30cli) by Justin HilemanNew PHPmanualis available (latest:3.0.5).Update with"doc --update-manual'> Sresult = AutomatedReportResult::find(1872);[!] Aliasing'AutomatedReportResult' to'Jiminny\Models\AutomatedReportResult' for this Tinker session.Jiminny\Models\AutomatedReportResult{#15863id:1872,uuid: b"CO-0,/a\e¢Ht°ão11",report_id:54,name: "Coaching Profiles - 6 - 12 Apr 2026 - Client Success, UK Sales",media_type: "pdf",parent_id: null,status: 2,reason: 0,payload: "["team_id":1, "request_id": "822fa41b-afd3-43a9-a248-86b0e36f3131", "report_type": "coaching_profiles", "media_types": ["pdf","podcast"], "from_date": "2026-04-06T00:00:00+(0- 00- er ), te2uro-0012723:5905050:80, Canldurdt n.m,2), Conseal-5t Se (), requene dets sta ** (, akur -netue 1, meah, TOUyuaae*:apl, imn -ons E° conterrepertsVrepon, reore-pertd:°82272 10- 202-1, 09-0160-k cot6riss, 5,'eus* compt"ted", '"'inestamp" "2026-04-13701:11:48. 648399-00-:00', 's3_url" "S3:V//jiminny.client-dataV/5F0F4810-7e77-4086-8f69-93429ae4d70b\/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD","report_type":"coaching_profiles", "podcast_url":"s3:\Wjiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt","podcast_audio_url":"s3:\//jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70bV/reports\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3","podcast_ssml_url":"s3:\//jiminny.client-data\/Sf0f4810-7e77-4086-8f69-93429ae4d70bVreports\/822fa41b-afd3-43a9-a248-86b0e36f3131-podcast.senl"t": +2026-04-13 01:00:57"requested_at:generated_at: "2026-04-13 01:11:48",sent_at: null,created_at: "2026-04-13 01:00:27",updated_at: "2026-04-13 01:11:48",› Sresult->status = 4;› Sresult->saveO);true> exitINFOGoodbye.root@aßefaa2235c4:/home/jiminny#l...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
12236
|
544
|
10
|
2026-05-09T08:40:01.462374+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-09/1778 /Users/lukas/.screenpipe/data/data/2026-05-09/1778316001462_m2.jpg...
|
Firefox
|
AFFiNE - All In One KnowledgeOS — Personal
|
True
|
affine.pro
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
screenpipe/.claude/skills at main · screenpipe/scr screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub
github.com
Pull requests · screenpipe/screenpipe · GitHub
Pull requests · screenpipe/screenpipe · GitHub
DNS / Nameservers | Hostinger
DNS / Nameservers | Hostinger
Nginx Proxy Manager
Nginx Proxy Manager
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub
screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub
Close tab
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
AFFiNE - All In One KnowledgeOS
AFFiNE - All In One KnowledgeOS
Close tab
All docs · AFFiNE
All docs · AFFiNE
Payments Logger
Payments Logger
Was the assassination attempt on Trump at the correspondence dinner tonight staged or real? - [EMAIL] - Gmail
Was the assassination attempt on Trump at the correspondence dinner tonight staged or real? - [EMAIL] - Gmail
(25) Quora
(25) Quora
New Tab
New Tab
Location Logger
Location Logger
Finance Hub
Finance Hub
Finance Hub
Finance Hub
Select: payments - db - Adminer
Select: payments - db - Adminer
Електронно банкиране ДСК Директ от Банка ДСК
Електронно банкиране ДСК Директ от Банка ДСК
note taking app affine I am unable to sync between mac and ios and online - Google Search
note taking app affine I am unable to sync between mac and ios and online - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
logo
Product
Product
Team
Team
Download
Download
Resources
Pricing
Pricing
Get Started
Get Started
github
Stars on GitHub
AFFiNE AI - AI partner to better write, draw & present | Product Hunt
Write, Draw, Plan,All at Once. With AI.
Write,
Draw,
Plan,
All at Once.
With
AI.
AFFiNE is a workspace with fully merged docs, whiteboards and databases.
Get more things done, your creativity isn’t monotone.
Get Started
Get Started
Trusted by people from next-gen startups to established organizations.
Trusted by people from next-gen startups to established organizations.
Consolidate Your Workflow with Ease on a Hyperfused Platform
Consolidate Your Workflow with Ease on a Hyperfused Platform
Say goodbye to the hassle of switchover
Tired of switching between different tools to meet your complex needs?
Stay focused, and unleash your wild creativity with AFFiNE
Your all-in-one KnowledgeOS solution for effortlessly writing, drawing, and planning on a hyper-fused platform.
Privacy-focused, local-first
You are in charge of your own data.
your way to better productivity
your way to better productivity
Build up your content like blocks and let your ideas run wild.
Draw and visualise with ease and creativity
Draw
and visualise with
ease
and
creativity
Visualise your creativity with others. No constraints, limited only by your imagination.
Plan, track, and collaborate efficiently
Plan, track, and collaborate efficiently
Stay on top of your workload and achieve more in less time.
AI partner helps you better write, draw and plan
AI
partner helps you better write, draw and plan
Let you think bigger, create faster, work smarter in anytime, anywhere
learn more
Learn more
Learn more
Ready-to-Use Templates for Any Project
Ready-to-Use Templates for Any Project
Find your ideal template now
Find your ideal template now
Digital Planner
Digital Planner
Story Board
Story Board
Cornell Notes
Cornell Notes
One Pager
One Pager
Checklist
Checklist
Vision Board
Vision Board
Itinerary template
Itinerary template
AFFiNE builds everything in public
AFFiNE builds
everything in public
Open-Source Code for Trust and Collaboration
Open-Source Code for Trust and Collaboration
We foster trust and enable everyone to contribute and enhance AFFiNE for a far wider audience.
toeverything/AFFiNE/issues
Open issues
Closed
[Feature Request]: Day-view timeline toggle in sidebar calendar + drag/drop task into calendar functionality #14927 opened · yesterday by · chewybone
[Feature Request]: Day-view timeline toggle in sidebar calendar + drag/drop task into calendar functionality
#14927 opened · yesterday by ·
chewybone
chewybone
[Bug]: Glitch in Markdown support for italic text #14926 opened · yesterday by · phxyz12
[Bug]: Glitch in Markdown support for italic text
#14926 opened · yesterday by ·
phxyz12
phxyz12
[Bug]: Section 'Bi-directional links' doesn't show links in the Andriod app #14925 opened · yesterday by · phxyz12
[Bug]: Section 'Bi-directional links' doesn't show links in the Andriod app
#14925 opened · yesterday by ·
phxyz12
phxyz12
Free for individuals, commercial and team usage fees apply.
$$$
Free
$$$
User-Centric Community Engagement
User-Centric Community Engagement
Creating a vibrant space for users to connect, share, and inspire one another.
Join Our Community
Join Our Community
Millions love to engage and propel the unparalleled AFFiNE
Millions love to engage and
propel the unparalleled
AFFiNE
Dan Charles
CEO - The Keyman Group
Really impressed with how
AFFiNE
is able to streamline our team's workflow and improve productivity. Switch between different modes to write, draw, and plan all in one place and with data security which we are most concerned about. It makes everything easy.
Orange-Cheng
Product manager of the TATDOD Space
Extremely impressed with the quality and capabilities of
AFFiNE
, particularly its simple and intuitive interface. The attention to detail that has been put into every aspect of the product, from its design to its functionality, is truly exceptional. The product's innovative features and capabilities are sure to make a significant impact in the industry, providing customers with a seamless and user-friendly experience.
Maestro
Graphic Designer
With
AFFiNE
's whiteboard feature, I sketch, doodle, and visualize ideas collaboratively in real time. It's an endless canvas for our creativity, allowing us to refine our projects to perfection. The Kanban boards complement our artistic process, ensuring impeccable organization and project tracking.
TinsFox
Front-end Developer
AFFiNE
is by far the best open-source community I’ve come across. Open, inclusive and user-first. At the same time,
AFFiNE
is also a great product. Being open source means more possibilities and more exciting things can be created.
Eliot
Student
AFFiNE
is an open source that is close to its community and filled with useful features. I use edgeless mode to connect all my knowledge to a single page.
Summer123
The Founder of a fashion brand
AFFiNE
's Kanban project management simplifies my hectic workload. Easy task management feels like a personal assistant. Yet, the standout is the whiteboard, streamlining brainstorming, project planning, and workflow visualization.
Joanna
Marketing Manager
AFFiNE
revolutionizes our creative collaboration. Kanban boards effortlessly manage tasks and campaigns. The whiteboard sparks innovation for marketing strategies and content planning, making
AFFiNE
a vital tool for our creative team.
Ragma.TP
Project manager of Tiktok
I'm thrilled with how effortless it was to set up workspaces, arrange pages, and collaborate with my team members in real-time.
AFFiNE
just makes everything easy, streamlines our workflow and boosts our productivity.
Mattias
Student
I've been looking for an open-source note-taking solution for ages now and
AFFiNE
is the first to support all the features I need -- and it even manages to do this while being absolutely beautiful!
AFFiNE
is very feature rich and the synchronization is also awesome.
BusyBee
Full-time Mom
Being a working mom with a hectic schedule,
AFFiNE
is my ultimate lifesaver. Its Kanban boards help me manage household tasks, kids' activities, and work projects with ease. Whether it's organizing chores, tracking school events, or managing deadlines,
AFFiNE
's Kanban feature keeps me on top of it all.
Alice
Student from KCL
One feature I particularly appreciate is the ability to seamlessly switch from typing to handwriting, adding a touch of elegance and versatility to my work.
PanicN3xus
User
AFFiNE
is an exceptional project that elevates note-making to a whole new level. I am highly impressed by the number of features that it brings to the table. Having tried several other open-source note-making software, I can confidently say that
AFFiNE
is the best.
Dynamo
Freelancer
AFFiNE
's Kanban boards are my go-to for life organization, promoting discipline, and habit consistency. I outline goals, plan, and track progress, be it fitness or reading challenges. It's my trusted tool for a fulfilling, disciplined life.
Write Smarter, Work Better with AFFiNE...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub","depth":4,"bounds":{"left":0.5994016,"top":0.26256984,"width":0.084109046,"height":0.021548284},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"github.com","depth":4,"bounds":{"left":0.5994016,"top":0.28411812,"width":0.019614361,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · screenpipe/screenpipe · GitHub","depth":4,"bounds":{"left":0.4817154,"top":0.05905826,"width":0.113696806,"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":"Pull requests · screenpipe/screenpipe · GitHub","depth":5,"bounds":{"left":0.4950133,"top":0.070231445,"width":0.080784574,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"DNS / Nameservers | Hostinger","depth":4,"bounds":{"left":0.4817154,"top":0.09177973,"width":0.113696806,"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":"DNS / Nameservers | Hostinger","depth":5,"bounds":{"left":0.4950133,"top":0.10295291,"width":0.053856384,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Nginx Proxy Manager","depth":4,"bounds":{"left":0.4817154,"top":0.1245012,"width":0.113696806,"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":"Nginx Proxy Manager","depth":5,"bounds":{"left":0.4950133,"top":0.13567439,"width":0.036901597,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"bounds":{"left":0.4817154,"top":0.15722266,"width":0.113696806,"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":"Screenpipe — Archive","depth":5,"bounds":{"left":0.4950133,"top":0.16839585,"width":0.037898935,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"SQLite Web: archive.db","depth":4,"bounds":{"left":0.4817154,"top":0.18994413,"width":0.113696806,"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":"SQLite Web: archive.db","depth":5,"bounds":{"left":0.4950133,"top":0.20111732,"width":0.040724736,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"SQLite Web: db.sqlite","depth":4,"bounds":{"left":0.4817154,"top":0.22266561,"width":0.113696806,"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":"SQLite Web: db.sqlite","depth":5,"bounds":{"left":0.4950133,"top":0.23383878,"width":0.03756649,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub","depth":4,"bounds":{"left":0.4817154,"top":0.25538707,"width":0.113696806,"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":"screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub","depth":5,"bounds":{"left":0.4950133,"top":0.26656026,"width":0.11469415,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.5831117,"top":0.26256984,"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":"DXP4800PLUS-B5F8","depth":4,"bounds":{"left":0.4817154,"top":0.28810853,"width":0.113696806,"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":"DXP4800PLUS-B5F8","depth":5,"bounds":{"left":0.4950133,"top":0.29928172,"width":0.036901597,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"AFFiNE - All In One KnowledgeOS","depth":4,"bounds":{"left":0.4817154,"top":0.32083002,"width":0.113696806,"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":"AFFiNE - All In One KnowledgeOS","depth":5,"bounds":{"left":0.4950133,"top":0.3320032,"width":0.05851064,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.5831117,"top":0.32801276,"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":"All docs · AFFiNE","depth":4,"bounds":{"left":0.4817154,"top":0.35355148,"width":0.113696806,"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":"All docs · AFFiNE","depth":5,"bounds":{"left":0.4950133,"top":0.36472467,"width":0.029587766,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Payments Logger","depth":4,"bounds":{"left":0.4817154,"top":0.38627294,"width":0.113696806,"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":"Payments Logger","depth":5,"bounds":{"left":0.4950133,"top":0.39744613,"width":0.030086435,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Was the assassination attempt on Trump at the correspondence dinner tonight staged or real? - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.4817154,"top":0.41899443,"width":0.113696806,"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":"Was the assassination attempt on Trump at the correspondence dinner tonight staged or real? - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.4950133,"top":0.4301676,"width":0.22323804,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"(25) Quora","depth":4,"bounds":{"left":0.4817154,"top":0.4517159,"width":0.113696806,"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":"(25) Quora","depth":5,"bounds":{"left":0.4950133,"top":0.46288908,"width":0.018949468,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.4817154,"top":0.48443735,"width":0.113696806,"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":"New Tab","depth":5,"bounds":{"left":0.4950133,"top":0.49561054,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Location Logger","depth":4,"bounds":{"left":0.4817154,"top":0.5171588,"width":0.113696806,"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":"Location Logger","depth":5,"bounds":{"left":0.4950133,"top":0.528332,"width":0.028091755,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"bounds":{"left":0.4817154,"top":0.54988027,"width":0.113696806,"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":"Finance Hub","depth":5,"bounds":{"left":0.4950133,"top":0.56105345,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"bounds":{"left":0.4817154,"top":0.5826017,"width":0.113696806,"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":"Finance Hub","depth":5,"bounds":{"left":0.4950133,"top":0.5937749,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Select: payments - db - Adminer","depth":4,"bounds":{"left":0.4817154,"top":0.61532325,"width":0.113696806,"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":"Select: payments - db - Adminer","depth":5,"bounds":{"left":0.4950133,"top":0.62649643,"width":0.05651596,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Електронно банкиране ДСК Директ от Банка ДСК","depth":4,"bounds":{"left":0.4817154,"top":0.6480447,"width":0.113696806,"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":"Електронно банкиране ДСК Директ от Банка ДСК","depth":5,"bounds":{"left":0.4950133,"top":0.6592179,"width":0.09059176,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"note taking app affine I am unable to sync between mac and ios and online - Google Search","depth":4,"bounds":{"left":0.4817154,"top":0.68076617,"width":0.113696806,"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":"note taking app affine I am unable to sync between mac and ios and online - Google Search","depth":5,"bounds":{"left":0.4950133,"top":0.69193935,"width":0.15890957,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.48454124,"top":0.7150838,"width":0.108211435,"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.48454124,"top":0.97725457,"width":0.010638298,"height":0.02274543},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.49551198,"top":0.97725457,"width":0.010638298,"height":0.02274543},"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.50664896,"top":0.97725457,"width":0.010638298,"height":0.02274543},"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.5177859,"top":0.97725457,"width":0.010638298,"height":0.02274543},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"bounds":{"left":0.52892286,"top":0.97725457,"width":0.010638298,"height":0.02274543},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"logo","depth":9,"bounds":{"left":0.6090425,"top":0.07661612,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Product","depth":9,"bounds":{"left":0.62765956,"top":0.075019956,"width":0.031416222,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Product","depth":10,"bounds":{"left":0.63164896,"top":0.082601756,"width":0.016788565,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Team","depth":9,"bounds":{"left":0.6604056,"top":0.075019956,"width":0.02642952,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Team","depth":10,"bounds":{"left":0.664395,"top":0.082601756,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Download","depth":9,"bounds":{"left":0.6881649,"top":0.075019956,"width":0.029587766,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download","depth":10,"bounds":{"left":0.6921542,"top":0.082601756,"width":0.021609042,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resources","depth":10,"bounds":{"left":0.7230718,"top":0.082601756,"width":0.022606382,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Pricing","depth":9,"bounds":{"left":0.75764626,"top":0.075019956,"width":0.022772606,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pricing","depth":10,"bounds":{"left":0.76163566,"top":0.082601756,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Get Started","depth":10,"bounds":{"left":0.87400264,"top":0.07741421,"width":0.034906916,"height":0.023942538},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Get Started","depth":11,"bounds":{"left":0.87400264,"top":0.07741421,"width":0.034906916,"height":0.023942538},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"github","depth":10,"bounds":{"left":0.91289896,"top":0.07661612,"width":0.052526597,"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":"Stars on GitHub","depth":12,"bounds":{"left":0.9261968,"top":0.082601756,"width":0.03357713,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AFFiNE AI - AI partner to better write, draw & present | Product Hunt","depth":9,"bounds":{"left":0.8919548,"top":0.97525936,"width":0.0831117,"height":0.021548284},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Write, Draw, Plan,All at Once. With AI.","depth":9,"bounds":{"left":0.6693817,"top":0.20590582,"width":0.23836437,"height":0.14844373},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Write,","depth":10,"bounds":{"left":0.67170876,"top":0.19832402,"width":0.072307184,"height":0.08739027},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Draw,","depth":11,"bounds":{"left":0.7463431,"top":0.18036711,"width":0.0709774,"height":0.13647246},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plan,","depth":10,"bounds":{"left":0.8474069,"top":0.20391062,"width":0.060339097,"height":0.08739027},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"All at Once.","depth":10,"bounds":{"left":0.68002,"top":0.27494013,"width":0.13912898,"height":0.08739027},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"With","depth":10,"bounds":{"left":0.81914896,"top":0.28890663,"width":0.05319149,"height":0.06743815},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AI.","depth":11,"bounds":{"left":0.87234044,"top":0.28890663,"width":0.024767287,"height":0.06743815},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE is a workspace with fully merged docs, whiteboards and databases.\nGet more things done, your creativity isn’t monotone.","depth":10,"bounds":{"left":0.67303854,"top":0.36073422,"width":0.23105054,"height":0.041101355},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Get Started","depth":9,"bounds":{"left":0.75880986,"top":0.42138866,"width":0.059507977,"height":0.06304868},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Get Started","depth":10,"bounds":{"left":0.75880986,"top":0.4501197,"width":0.059507977,"height":0.03431764},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Trusted by people from next-gen startups to established organizations.","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Trusted by people from next-gen startups to established organizations.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Consolidate Your Workflow with Ease on a Hyperfused Platform","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Consolidate Your Workflow with Ease on a Hyperfused Platform","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Say goodbye to the hassle of switchover","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Tired of switching between different tools to meet your complex needs?","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Stay focused, and unleash your wild creativity with AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Your all-in-one KnowledgeOS solution for effortlessly writing, drawing, and planning on a hyper-fused platform.","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Privacy-focused, local-first","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You are in charge of your own data.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"your way to better productivity","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"your way to better productivity","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Build up your content like blocks and let your ideas run wild.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Draw and visualise with ease and creativity","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Draw","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and visualise with","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ease","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"creativity","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Visualise your creativity with others. No constraints, limited only by your imagination.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Plan, track, and collaborate efficiently","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plan, track, and collaborate efficiently","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Stay on top of your workload and achieve more in less time.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"AI partner helps you better write, draw and plan","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AI","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"partner helps you better write, draw and plan","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Let you think bigger, create faster, work smarter in anytime, anywhere","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"learn more","depth":8,"on_screen":false,"help_text":"Learn more about AFFiNE AI","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Learn more","depth":9,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Learn more","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ready-to-Use Templates for Any Project","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ready-to-Use Templates for Any Project","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Find your ideal template now","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Find your ideal template now","depth":9,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Digital Planner","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Digital Planner","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Story Board","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Story Board","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Cornell Notes","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Cornell Notes","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"One Pager","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"One Pager","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Checklist","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checklist","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Vision Board","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Vision Board","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Itinerary template","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Itinerary template","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"AFFiNE builds everything in public","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE builds\neverything in public","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Open-Source Code for Trust and Collaboration","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open-Source Code for Trust and Collaboration","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"We foster trust and enable everyone to contribute and enhance AFFiNE for a far wider audience.","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"toeverything/AFFiNE/issues","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open issues","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Closed","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"[Feature Request]: Day-view timeline toggle in sidebar calendar + drag/drop task into calendar functionality #14927 opened · yesterday by · chewybone","depth":9,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[Feature Request]: Day-view timeline toggle in sidebar calendar + drag/drop task into calendar functionality","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#14927 opened · yesterday by ·","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"chewybone","depth":10,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"chewybone","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"[Bug]: Glitch in Markdown support for italic text #14926 opened · yesterday by · phxyz12","depth":9,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[Bug]: Glitch in Markdown support for italic text","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#14926 opened · yesterday by ·","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"phxyz12","depth":10,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phxyz12","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"[Bug]: Section 'Bi-directional links' doesn't show links in the Andriod app #14925 opened · yesterday by · phxyz12","depth":9,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[Bug]: Section 'Bi-directional links' doesn't show links in the Andriod app","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#14925 opened · yesterday by ·","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"phxyz12","depth":10,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phxyz12","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Free for individuals, commercial and team usage fees apply.","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$$$","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Free","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$$$","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"User-Centric Community Engagement","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"User-Centric Community Engagement","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Creating a vibrant space for users to connect, share, and inspire one another.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Join Our Community","depth":8,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Join Our Community","depth":9,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Millions love to engage and propel the unparalleled AFFiNE","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Millions love to engage and\npropel the unparalleled","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Dan Charles","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CEO - The Keyman Group","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Really impressed with how","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is able to streamline our team's workflow and improve productivity. Switch between different modes to write, draw, and plan all in one place and with data security which we are most concerned about. It makes everything easy.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Orange-Cheng","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Product manager of the TATDOD Space","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Extremely impressed with the quality and capabilities of","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", particularly its simple and intuitive interface. The attention to detail that has been put into every aspect of the product, from its design to its functionality, is truly exceptional. The product's innovative features and capabilities are sure to make a significant impact in the industry, providing customers with a seamless and user-friendly experience.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Maestro","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Graphic Designer","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"With","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'s whiteboard feature, I sketch, doodle, and visualize ideas collaboratively in real time. It's an endless canvas for our creativity, allowing us to refine our projects to perfection. The Kanban boards complement our artistic process, ensuring impeccable organization and project tracking.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"TinsFox","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Front-end Developer","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is by far the best open-source community I’ve come across. Open, inclusive and user-first. At the same time,","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is also a great product. Being open source means more possibilities and more exciting things can be created.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Eliot","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Student","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is an open source that is close to its community and filled with useful features. I use edgeless mode to connect all my knowledge to a single page.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Summer123","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"The Founder of a fashion brand","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'s Kanban project management simplifies my hectic workload. Easy task management feels like a personal assistant. Yet, the standout is the whiteboard, streamlining brainstorming, project planning, and workflow visualization.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Joanna","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Marketing Manager","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"revolutionizes our creative collaboration. Kanban boards effortlessly manage tasks and campaigns. The whiteboard sparks innovation for marketing strategies and content planning, making","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"a vital tool for our creative team.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ragma.TP","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Project manager of Tiktok","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"I'm thrilled with how effortless it was to set up workspaces, arrange pages, and collaborate with my team members in real-time.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"just makes everything easy, streamlines our workflow and boosts our productivity.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Mattias","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Student","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"I've been looking for an open-source note-taking solution for ages now and","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is the first to support all the features I need -- and it even manages to do this while being absolutely beautiful!","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is very feature rich and the synchronization is also awesome.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BusyBee","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Full-time Mom","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Being a working mom with a hectic schedule,","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is my ultimate lifesaver. Its Kanban boards help me manage household tasks, kids' activities, and work projects with ease. Whether it's organizing chores, tracking school events, or managing deadlines,","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'s Kanban feature keeps me on top of it all.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alice","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Student from KCL","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"One feature I particularly appreciate is the ability to seamlessly switch from typing to handwriting, adding a touch of elegance and versatility to my work.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PanicN3xus","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"User","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is an exceptional project that elevates note-making to a whole new level. I am highly impressed by the number of features that it brings to the table. Having tried several other open-source note-making software, I can confidently say that","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is the best.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Dynamo","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Freelancer","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AFFiNE","depth":10,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'s Kanban boards are my go-to for life organization, promoting discipline, and habit consistency. I outline goals, plan, and track progress, be it fitness or reading challenges. It's my trusted tool for a fulfilling, disciplined life.","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Write Smarter, Work Better with AFFiNE","depth":8,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"}]...
|
-9147745154718841018
|
8926183160504682306
|
visual_change
|
accessibility
|
NULL
|
screenpipe/.claude/skills at main · screenpipe/scr screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub
github.com
Pull requests · screenpipe/screenpipe · GitHub
Pull requests · screenpipe/screenpipe · GitHub
DNS / Nameservers | Hostinger
DNS / Nameservers | Hostinger
Nginx Proxy Manager
Nginx Proxy Manager
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub
screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub
Close tab
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
AFFiNE - All In One KnowledgeOS
AFFiNE - All In One KnowledgeOS
Close tab
All docs · AFFiNE
All docs · AFFiNE
Payments Logger
Payments Logger
Was the assassination attempt on Trump at the correspondence dinner tonight staged or real? - [EMAIL] - Gmail
Was the assassination attempt on Trump at the correspondence dinner tonight staged or real? - [EMAIL] - Gmail
(25) Quora
(25) Quora
New Tab
New Tab
Location Logger
Location Logger
Finance Hub
Finance Hub
Finance Hub
Finance Hub
Select: payments - db - Adminer
Select: payments - db - Adminer
Електронно банкиране ДСК Директ от Банка ДСК
Електронно банкиране ДСК Директ от Банка ДСК
note taking app affine I am unable to sync between mac and ios and online - Google Search
note taking app affine I am unable to sync between mac and ios and online - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
logo
Product
Product
Team
Team
Download
Download
Resources
Pricing
Pricing
Get Started
Get Started
github
Stars on GitHub
AFFiNE AI - AI partner to better write, draw & present | Product Hunt
Write, Draw, Plan,All at Once. With AI.
Write,
Draw,
Plan,
All at Once.
With
AI.
AFFiNE is a workspace with fully merged docs, whiteboards and databases.
Get more things done, your creativity isn’t monotone.
Get Started
Get Started
Trusted by people from next-gen startups to established organizations.
Trusted by people from next-gen startups to established organizations.
Consolidate Your Workflow with Ease on a Hyperfused Platform
Consolidate Your Workflow with Ease on a Hyperfused Platform
Say goodbye to the hassle of switchover
Tired of switching between different tools to meet your complex needs?
Stay focused, and unleash your wild creativity with AFFiNE
Your all-in-one KnowledgeOS solution for effortlessly writing, drawing, and planning on a hyper-fused platform.
Privacy-focused, local-first
You are in charge of your own data.
your way to better productivity
your way to better productivity
Build up your content like blocks and let your ideas run wild.
Draw and visualise with ease and creativity
Draw
and visualise with
ease
and
creativity
Visualise your creativity with others. No constraints, limited only by your imagination.
Plan, track, and collaborate efficiently
Plan, track, and collaborate efficiently
Stay on top of your workload and achieve more in less time.
AI partner helps you better write, draw and plan
AI
partner helps you better write, draw and plan
Let you think bigger, create faster, work smarter in anytime, anywhere
learn more
Learn more
Learn more
Ready-to-Use Templates for Any Project
Ready-to-Use Templates for Any Project
Find your ideal template now
Find your ideal template now
Digital Planner
Digital Planner
Story Board
Story Board
Cornell Notes
Cornell Notes
One Pager
One Pager
Checklist
Checklist
Vision Board
Vision Board
Itinerary template
Itinerary template
AFFiNE builds everything in public
AFFiNE builds
everything in public
Open-Source Code for Trust and Collaboration
Open-Source Code for Trust and Collaboration
We foster trust and enable everyone to contribute and enhance AFFiNE for a far wider audience.
toeverything/AFFiNE/issues
Open issues
Closed
[Feature Request]: Day-view timeline toggle in sidebar calendar + drag/drop task into calendar functionality #14927 opened · yesterday by · chewybone
[Feature Request]: Day-view timeline toggle in sidebar calendar + drag/drop task into calendar functionality
#14927 opened · yesterday by ·
chewybone
chewybone
[Bug]: Glitch in Markdown support for italic text #14926 opened · yesterday by · phxyz12
[Bug]: Glitch in Markdown support for italic text
#14926 opened · yesterday by ·
phxyz12
phxyz12
[Bug]: Section 'Bi-directional links' doesn't show links in the Andriod app #14925 opened · yesterday by · phxyz12
[Bug]: Section 'Bi-directional links' doesn't show links in the Andriod app
#14925 opened · yesterday by ·
phxyz12
phxyz12
Free for individuals, commercial and team usage fees apply.
$$$
Free
$$$
User-Centric Community Engagement
User-Centric Community Engagement
Creating a vibrant space for users to connect, share, and inspire one another.
Join Our Community
Join Our Community
Millions love to engage and propel the unparalleled AFFiNE
Millions love to engage and
propel the unparalleled
AFFiNE
Dan Charles
CEO - The Keyman Group
Really impressed with how
AFFiNE
is able to streamline our team's workflow and improve productivity. Switch between different modes to write, draw, and plan all in one place and with data security which we are most concerned about. It makes everything easy.
Orange-Cheng
Product manager of the TATDOD Space
Extremely impressed with the quality and capabilities of
AFFiNE
, particularly its simple and intuitive interface. The attention to detail that has been put into every aspect of the product, from its design to its functionality, is truly exceptional. The product's innovative features and capabilities are sure to make a significant impact in the industry, providing customers with a seamless and user-friendly experience.
Maestro
Graphic Designer
With
AFFiNE
's whiteboard feature, I sketch, doodle, and visualize ideas collaboratively in real time. It's an endless canvas for our creativity, allowing us to refine our projects to perfection. The Kanban boards complement our artistic process, ensuring impeccable organization and project tracking.
TinsFox
Front-end Developer
AFFiNE
is by far the best open-source community I’ve come across. Open, inclusive and user-first. At the same time,
AFFiNE
is also a great product. Being open source means more possibilities and more exciting things can be created.
Eliot
Student
AFFiNE
is an open source that is close to its community and filled with useful features. I use edgeless mode to connect all my knowledge to a single page.
Summer123
The Founder of a fashion brand
AFFiNE
's Kanban project management simplifies my hectic workload. Easy task management feels like a personal assistant. Yet, the standout is the whiteboard, streamlining brainstorming, project planning, and workflow visualization.
Joanna
Marketing Manager
AFFiNE
revolutionizes our creative collaboration. Kanban boards effortlessly manage tasks and campaigns. The whiteboard sparks innovation for marketing strategies and content planning, making
AFFiNE
a vital tool for our creative team.
Ragma.TP
Project manager of Tiktok
I'm thrilled with how effortless it was to set up workspaces, arrange pages, and collaborate with my team members in real-time.
AFFiNE
just makes everything easy, streamlines our workflow and boosts our productivity.
Mattias
Student
I've been looking for an open-source note-taking solution for ages now and
AFFiNE
is the first to support all the features I need -- and it even manages to do this while being absolutely beautiful!
AFFiNE
is very feature rich and the synchronization is also awesome.
BusyBee
Full-time Mom
Being a working mom with a hectic schedule,
AFFiNE
is my ultimate lifesaver. Its Kanban boards help me manage household tasks, kids' activities, and work projects with ease. Whether it's organizing chores, tracking school events, or managing deadlines,
AFFiNE
's Kanban feature keeps me on top of it all.
Alice
Student from KCL
One feature I particularly appreciate is the ability to seamlessly switch from typing to handwriting, adding a touch of elegance and versatility to my work.
PanicN3xus
User
AFFiNE
is an exceptional project that elevates note-making to a whole new level. I am highly impressed by the number of features that it brings to the table. Having tried several other open-source note-making software, I can confidently say that
AFFiNE
is the best.
Dynamo
Freelancer
AFFiNE
's Kanban boards are my go-to for life organization, promoting discipline, and habit consistency. I outline goals, plan, and track progress, be it fitness or reading challenges. It's my trusted tool for a fulfilling, disciplined life.
Write Smarter, Work Better with AFFiNE...
|
12235
|
NULL
|
NULL
|
NULL
|
|
23910
|
1003
|
82
|
2026-05-12T08:30:31.268884+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778574631268_m2.jpg...
|
Firefox
|
Jiminny — Work
|
True
|
app.jiminny.com/ai-reports
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
Data Explorer
Data Explorer
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
Jiminny
Jiminny
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
6
6
AI Reports
AI Reports
Ask Jiminny reports
Ask Jiminny reports
Report name
5-19 Apr, 2026
Coaching Profiles × Report Type
Coaching Profiles
×
Report Type
Clear all
NAME
FREQUENCY
SHARED
DATE
ACTIONS
Coaching Profiles - 6 - 12 Apr 2026 - Client Success, UK Sales
Weekly
+1
13/04/2026
Coaching Profiles Podcast - 6 - 12 Apr 2026 - Client Success, UK Sales
Weekly
+1
13/04/2026
Coaching Profiles - 30 Mar - 5 Apr 2026 - Client Success, UK Sales
Weekly
+1
06/04/2026
Coaching Profiles Podcast - 30 Mar - 5 Apr 2026 - Client Success, UK Sales
Weekly
+1
06/04/2026
You are currently impersonating Adelina Petrova...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.3643617,"top":0.0518755,"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":"New Tab","depth":5,"bounds":{"left":0.3776596,"top":0.06304868,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":4,"bounds":{"left":0.3643617,"top":0.08459697,"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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":5,"bounds":{"left":0.3776596,"top":0.09577015,"width":0.16888298,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":4,"bounds":{"left":0.3643617,"top":0.11731844,"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-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":5,"bounds":{"left":0.3776596,"top":0.12849163,"width":0.16140293,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","depth":4,"bounds":{"left":0.3643617,"top":0.15003991,"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-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","depth":5,"bounds":{"left":0.3776596,"top":0.16121309,"width":0.18816489,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.3643617,"top":0.18276137,"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.3776596,"top":0.19393456,"width":0.039228722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"bounds":{"left":0.3643617,"top":0.21548285,"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":"Pull requests · jiminny/app","depth":5,"bounds":{"left":0.3776596,"top":0.22665602,"width":0.04537899,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20773] User Pilot not receiving events on report generated - Jira","depth":4,"bounds":{"left":0.3643617,"top":0.2482043,"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-20773] User Pilot not receiving events on report generated - Jira","depth":5,"bounds":{"left":0.3776596,"top":0.25937748,"width":0.1200133,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":4,"bounds":{"left":0.3643617,"top":0.28092578,"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-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":5,"bounds":{"left":0.3776596,"top":0.29209897,"width":0.19331782,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - Jira","depth":4,"bounds":{"left":0.3643617,"top":0.31364724,"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-20776] Automated report - sentry - Jira","depth":5,"bounds":{"left":0.3776596,"top":0.32482043,"width":0.07646277,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":4,"bounds":{"left":0.3643617,"top":0.3463687,"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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"bounds":{"left":0.3776596,"top":0.3575419,"width":0.40475398,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.3643617,"top":0.3790902,"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":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":5,"bounds":{"left":0.3776596,"top":0.39026338,"width":0.10106383,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":4,"bounds":{"left":0.3643617,"top":0.41181165,"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-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":5,"bounds":{"left":0.3776596,"top":0.42298484,"width":0.15159574,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Data Explorer","depth":4,"bounds":{"left":0.3643617,"top":0.4445331,"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":"Data Explorer","depth":5,"bounds":{"left":0.3776596,"top":0.4557063,"width":0.0234375,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - Jira","depth":4,"bounds":{"left":0.3643617,"top":0.4772546,"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-20776] Automated report - sentry - Jira","depth":5,"bounds":{"left":0.3776596,"top":0.4884278,"width":0.07646277,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.3643617,"top":0.509976,"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","depth":5,"bounds":{"left":0.3776596,"top":0.5211492,"width":0.013131649,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.43168217,"top":0.5171588,"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":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.3671875,"top":0.5442937,"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.3671875,"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 Google Gemini (⌃X)","depth":6,"bounds":{"left":0.37815824,"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.38929522,"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.40043217,"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.41156915,"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":"6","depth":12,"bounds":{"left":0.44664228,"top":0.91380686,"width":0.015957447,"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":"6","depth":14,"bounds":{"left":0.45611703,"top":0.9173983,"width":0.0023271276,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"AI Reports","depth":13,"bounds":{"left":0.47323802,"top":0.06943336,"width":0.031416222,"height":0.019553073},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AI Reports","depth":14,"bounds":{"left":0.47323802,"top":0.06943336,"width":0.031416222,"height":0.019553073},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Ask Jiminny reports","depth":13,"bounds":{"left":0.93267953,"top":0.06464485,"width":0.059341755,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny reports","depth":14,"bounds":{"left":0.94630986,"top":0.07222666,"width":0.04105718,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Report name","depth":17,"bounds":{"left":0.48603722,"top":0.10933759,"width":0.058011968,"height":0.019952115},"on_screen":true,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5-19 Apr, 2026","depth":20,"bounds":{"left":0.563996,"top":0.114924185,"width":0.029089095,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"Coaching Profiles × Report Type","depth":16,"bounds":{"left":0.63380986,"top":0.10933759,"width":0.06615692,"height":0.028731046},"on_screen":true,"value":"Coaching Profiles × Report Type","help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Coaching Profiles","depth":20,"bounds":{"left":0.63613695,"top":0.11691939,"width":0.036402926,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"×","depth":21,"bounds":{"left":0.67486703,"top":0.11652035,"width":0.0028257978,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Report Type","depth":18,"on_screen":false,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Clear all","depth":13,"bounds":{"left":0.7062833,"top":0.112529926,"width":0.028424202,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"NAME","depth":16,"bounds":{"left":0.47290558,"top":0.17398244,"width":0.012965426,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FREQUENCY","depth":16,"bounds":{"left":0.6978058,"top":0.17398244,"width":0.026263298,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SHARED","depth":16,"bounds":{"left":0.7727726,"top":0.17398244,"width":0.017453458,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"DATE","depth":16,"bounds":{"left":0.84773934,"top":0.17398244,"width":0.011136968,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ACTIONS","depth":16,"bounds":{"left":0.9227061,"top":0.17398244,"width":0.019115692,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Coaching Profiles - 6 - 12 Apr 2026 - Client Success, UK Sales","depth":17,"bounds":{"left":0.48620346,"top":0.22067039,"width":0.12799202,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Weekly","depth":17,"bounds":{"left":0.6978058,"top":0.22067039,"width":0.014960106,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+1","depth":17,"bounds":{"left":0.8005319,"top":0.22146848,"width":0.004488032,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13/04/2026","depth":17,"bounds":{"left":0.84773934,"top":0.22067039,"width":0.024102394,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Coaching Profiles Podcast - 6 - 12 Apr 2026 - Client Success, UK Sales","depth":17,"bounds":{"left":0.48620346,"top":0.2677574,"width":0.14577793,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Weekly","depth":17,"bounds":{"left":0.6978058,"top":0.2677574,"width":0.014960106,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+1","depth":17,"bounds":{"left":0.8005319,"top":0.26855546,"width":0.004488032,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13/04/2026","depth":17,"bounds":{"left":0.84773934,"top":0.2677574,"width":0.024102394,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Coaching Profiles - 30 Mar - 5 Apr 2026 - Client Success, UK Sales","depth":17,"bounds":{"left":0.48620346,"top":0.31484437,"width":0.13763298,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Weekly","depth":17,"bounds":{"left":0.6978058,"top":0.31484437,"width":0.014960106,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+1","depth":17,"bounds":{"left":0.8005319,"top":0.31564245,"width":0.004488032,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"06/04/2026","depth":17,"bounds":{"left":0.84773934,"top":0.31484437,"width":0.024102394,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Coaching Profiles Podcast - 30 Mar - 5 Apr 2026 - Client Success, UK Sales","depth":17,"bounds":{"left":0.48620346,"top":0.36193135,"width":0.15558511,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Weekly","depth":17,"bounds":{"left":0.6978058,"top":0.36193135,"width":0.014960106,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+1","depth":17,"bounds":{"left":0.8005319,"top":0.36272946,"width":0.004488032,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"06/04/2026","depth":17,"bounds":{"left":0.84773934,"top":0.36193135,"width":0.024102394,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You are currently impersonating Adelina Petrova","depth":11,"bounds":{"left":0.66638964,"top":0.053072624,"width":0.10073138,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-9147145538692069795
|
-2592645247217895381
|
visual_change
|
accessibility
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
Data Explorer
Data Explorer
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
Jiminny
Jiminny
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
6
6
AI Reports
AI Reports
Ask Jiminny reports
Ask Jiminny reports
Report name
5-19 Apr, 2026
Coaching Profiles × Report Type
Coaching Profiles
×
Report Type
Clear all
NAME
FREQUENCY
SHARED
DATE
ACTIONS
Coaching Profiles - 6 - 12 Apr 2026 - Client Success, UK Sales
Weekly
+1
13/04/2026
Coaching Profiles Podcast - 6 - 12 Apr 2026 - Client Success, UK Sales
Weekly
+1
13/04/2026
Coaching Profiles - 30 Mar - 5 Apr 2026 - Client Success, UK Sales
Weekly
+1
06/04/2026
Coaching Profiles Podcast - 30 Mar - 5 Apr 2026 - Client Success, UK Sales
Weekly
+1
06/04/2026
You are currently impersonating Adelina Petrova...
|
23909
|
NULL
|
NULL
|
NULL
|
|
21934
|
960
|
4
|
2026-05-12T06:38:16.989517+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778567896989_m1.jpg...
|
Slack
|
Galya Dimitrova (DM) - Jiminny Inc - 6 new items - Galya Dimitrova (DM) - Jiminny Inc - 6 new items - Slack...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Galya Dimitrova
Aneliya Angelova
Petko Kashinski
Stefka Stoyanova
Vasil Vasilev
Nikolay Ivanov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Ves
Lukas Kovalik
you
Toast
Jira Cloud
Google Calendar
Messages
Messages
Files
Files
Untitled
Untitled
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Saved for later • Due 17 hours ago
Galya Dimitrova
Yesterday at 1:06:47 PM
1:06 PM
привет, понеже другия спринт ще си продължиш с каквото остана по репортите, можеш ли днес или утре да видиш тези двете неща и да ми кажеш естимейт за тях:
https://jiminny.atlassian.net/browse/JY-20773
https://jiminny.atlassian.net/browse/JY-20773
- тук ако трябва може да се пише на съпорта. Но с другите евенти които Джеймс прави нямаше проблеми и си мисля че сигурно нещо различно е направено при тези
https://jiminny.atlassian.net/browse/JY-20776
https://jiminny.atlassian.net/browse/JY-20776
- тук го видяхме много на бързо на планинга и Ники Н каза че има съмнение че това е един репорт който е стъкнъл и се ретрайва много пъти защото не сме му сложили failed. Обаче не знам дали наистина е така
2 attachments
2 attachments
Jira Cloud Bug JY-20773 User Pilot not receiving events on report generated Bug JY-20773 in Jira Cloud Preview in Slack
User Pilot not receiving events on report generated
Bug JY-20773 in Jira Cloud
Preview in Slack
Open in browser
Share Bug JY-20773
View conversations
More actions
Jira Cloud Bug JY-20776 Automated report - sentry Bug JY-20776 in Jira Cloud Preview in Slack
Automated report - sentry
Bug JY-20776 in Jira Cloud
Preview in Slack
Open in browser
Share Bug JY-20776
View conversations
More actions
Jump to date
Lukas Kovalik
Today at 9:31:58 AM
9:31 AM
здрасти добавих му точки и някакъв комент, не знам какво повече да добавя, първия има PR който предполагам го оправи само да го видим после и втори си има описание какъв е проблем. Само трябва да видим новите грешки дали са от същия report или някой друг. Там трябва да се измисли дали да ги маркираме failed ако не може да се праща, или да ги проверяваме дали има всичко и да ги прескачаме ако няма.
Galya Dimitrova
Today at 9:34:00 AM
9:34 AM
маркирането failed е лесно. Ама после не трябва ли да ретрайнем самото генериране ако не се е получило
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Unreads","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":21,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"bugs","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"general","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"random","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"sofia-office","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"support","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Petko Kashinski","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Ves","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Lukas Kovalik","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"you","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Toast","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Google Calendar","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Messages","depth":17,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Messages","depth":19,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":17,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":19,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Untitled","depth":17,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Untitled","depth":19,"on_screen":true,"role_description":"text"},{"role":"AXPopUpButton","text":"Add and Edit Channel Tabs","depth":17,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Canvas","depth":17,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"List","depth":17,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":17,"on_screen":true,"role_description":"text"},{"role":"AXPopUpButton","text":"Jump to date","depth":22,"on_screen":false,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Saved for later • Due 17 hours ago","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Galya Dimitrova","depth":23,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Yesterday at 1:06:47 PM","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1:06 PM","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"привет, понеже другия спринт ще си продължиш с каквото остана по репортите, можеш ли днес или утре да видиш тези двете неща и да ми кажеш естимейт за тях:","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-20773","depth":25,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-20773","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- тук ако трябва може да се пише на съпорта. Но с другите евенти които Джеймс прави нямаше проблеми и си мисля че сигурно нещо различно е направено при тези","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"https://jiminny.atlassian.net/browse/JY-20776","depth":25,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.atlassian.net/browse/JY-20776","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"- тук го видяхме много на бързо на планинга и Ники Н каза че има съмнение че това е един репорт който е стъкнъл и се ретрайва много пъти защото не сме му сложили failed. Обаче не знам дали наистина е така","depth":25,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2 attachments","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"2 attachments","depth":23,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"Jira Cloud Bug JY-20773 User Pilot not receiving events on report generated Bug JY-20773 in Jira Cloud Preview in Slack","depth":25,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"User Pilot not receiving events on report generated","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Bug JY-20773 in Jira Cloud","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Preview in Slack","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Open in browser","depth":27,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Share Bug JY-20773","depth":26,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View conversations","depth":26,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More actions","depth":26,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Jira Cloud Bug JY-20776 Automated report - sentry Bug JY-20776 in Jira Cloud Preview in Slack","depth":25,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Automated report - sentry","depth":26,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Bug JY-20776 in Jira Cloud","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Preview in Slack","depth":27,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Open in browser","depth":27,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Share Bug JY-20776","depth":26,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View conversations","depth":26,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More actions","depth":26,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"Jump to date","depth":22,"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Lukas Kovalik","depth":23,"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Today at 9:31:58 AM","depth":23,"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"9:31 AM","depth":24,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"здрасти добавих му точки и някакъв комент, не знам какво повече да добавя, първия има PR който предполагам го оправи само да го видим после и втори си има описание какъв е проблем. Само трябва да видим новите грешки дали са от същия report или някой друг. Там трябва да се измисли дали да ги маркираме failed ако не може да се праща, или да ги проверяваме дали има всичко и да ги прескачаме ако няма.","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Galya Dimitrova","depth":23,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"Today at 9:34:00 AM","depth":23,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"9:34 AM","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"маркирането failed е лесно. Ама после не трябва ли да ретрайнем самото генериране ако не се е получило","depth":24,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"on_screen":true,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-9145064393326742921
|
-4102356140885239746
|
visual_change
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Galya Dimitrova
Aneliya Angelova
Petko Kashinski
Stefka Stoyanova
Vasil Vasilev
Nikolay Ivanov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Ves
Lukas Kovalik
you
Toast
Jira Cloud
Google Calendar
Messages
Messages
Files
Files
Untitled
Untitled
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Saved for later • Due 17 hours ago
Galya Dimitrova
Yesterday at 1:06:47 PM
1:06 PM
привет, понеже другия спринт ще си продължиш с каквото остана по репортите, можеш ли днес или утре да видиш тези двете неща и да ми кажеш естимейт за тях:
https://jiminny.atlassian.net/browse/JY-20773
https://jiminny.atlassian.net/browse/JY-20773
- тук ако трябва може да се пише на съпорта. Но с другите евенти които Джеймс прави нямаше проблеми и си мисля че сигурно нещо различно е направено при тези
https://jiminny.atlassian.net/browse/JY-20776
https://jiminny.atlassian.net/browse/JY-20776
- тук го видяхме много на бързо на планинга и Ники Н каза че има съмнение че това е един репорт който е стъкнъл и се ретрайва много пъти защото не сме му сложили failed. Обаче не знам дали наистина е така
2 attachments
2 attachments
Jira Cloud Bug JY-20773 User Pilot not receiving events on report generated Bug JY-20773 in Jira Cloud Preview in Slack
User Pilot not receiving events on report generated
Bug JY-20773 in Jira Cloud
Preview in Slack
Open in browser
Share Bug JY-20773
View conversations
More actions
Jira Cloud Bug JY-20776 Automated report - sentry Bug JY-20776 in Jira Cloud Preview in Slack
Automated report - sentry
Bug JY-20776 in Jira Cloud
Preview in Slack
Open in browser
Share Bug JY-20776
View conversations
More actions
Jump to date
Lukas Kovalik
Today at 9:31:58 AM
9:31 AM
здрасти добавих му точки и някакъв комент, не знам какво повече да добавя, първия има PR който предполагам го оправи само да го видим после и втори си има описание какъв е проблем. Само трябва да видим новите грешки дали са от същия report или някой друг. Там трябва да се измисли дали да ги маркираме failed ако не може да се праща, или да ги проверяваме дали има всичко и да ги прескачаме ако няма.
Galya Dimitrova
Today at 9:34:00 AM
9:34 AM
маркирането failed е лесно. Ама после не трябва ли да ретрайнем самото генериране ако не се е получило
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
iTerm2ShellEditViewSessionScriptsProfilesWindowHelpla6]Daily - Platform • in 7 mDOCKERO ₴1DEV (-zsh)О 882APP (-zsh)whisper_backend_init:usingBLAS backendwhisper_init_state: kvselfsize=3.15 MBwhisper_init_state: kv crosssize =9.44 MBwhisper_init_state: kv padsize2.36 MBwhisper_init_state:compute buffer (conv)whisper_init_state:computebuffer (encode) =whisper_init_state:computebuffer (cross)whisper_init_state: compute buffer (decode) =14.17 MB65.96 MB8.50 MB96.83 MBggml_metal_free: deallocatingwhisper_backend_init_gpu: device 0: Metal (type: 1)whisper_backend_init_gpu: found GPU device 0: Metal (type: 1, cnt: 0)whisper_backend_init_gpu:using Metal backendggml_metal_init: allocatingggml_metal_init:found device: Apple M1ggml_metal_init:picking default device: Apple M1ggml_metal_init:use fusion= trueggml_metal_init:use concurrency= trueggml_metal_init: use graph optimize = truewhisper_backend_init: using BLAS backendwhisper_init_state: kv selfsize3.15 MBwhisper_init_state: kv cross size =9.44 MBwhisper_init_state: kv padsize=2.36 MBwhisper_init_state: compute buffer (conv)=whisper_init_state: compute buffer (encode) =whisper_init_state: compute buffer (cross)whisper_init_state: computebuffer (decode) =14.17 MB65.96 MB8.50 MB96.83 MBggml_metal_free: deallocatingwhisper_backend_init_gpu: device 0: Metal (type: 1)whisper_backend_init_gpu:found GPU device 0: Metal (type: 1, cnt: 0)whisper_backend_init_gpu: using Metal backendggml_metal_init: allocatingggml_metal_init: found device: Apple M1ggml_metal_init:picking default device: Apple M1ggml_metal_init: use fusion= trueggml_metal_init: use concurrency= trueggml_metal_init: use graph optimize= truewhisper_backend_init: using BLAS backendwhisper_init_state: kv self size=3.15 MBwhisper_init_state: kv cross size =9.44 MBwhisper_init_state: kv padsize=2.36 MBwhisper_init_state: compute buffer (conv)whisper_init_state: compute buffer (encode) =whisper_init_state: compute buffer (cross)=whisper_init_state: compute buffer (decode) =14.17 MB65.96 MB8.50 MB96.83 MBggml_metal_free: deallocatingH3screenpipe"-zsh84-zsh*5screenpipe"100% <478•Tue 12 May 9:38:16T81786-zsh+...
|
21932
|
NULL
|
NULL
|
NULL
|
|
2750
|
112
|
48
|
2026-05-07T11:38:52.643779+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778153932643_m2.jpg...
|
PhpStorm
|
faVsco.js – SyncOpportunity.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhostormcodeFV faVsco.jsProledey© SyncActivity.php PhostormcodeFV faVsco.jsProledey© SyncActivity.php© RateLimitException.php©syncrielametdadld.onp© SyncHubspotObjects.pt©syncLedas.ongURateLimitintenace.phposyneuolects.ongsynceoportunitiesJob.onnamespace Jiminny\Jobs\Crm;© SyncOpportunity.php© SyncProfileMetadata.ph› use ...syncleamrielasJob.on 1zc) syncleammetadata.ong 1gclass syncupporcunlcy excenas Jod 1mplemencs shoulauueue© UpdateOpportunitySpec 19c) Upoarestace.ono07 DealRisks> Mailboxш Meetina3oC) HandleRateLimit.oho(c) RateLimited.onoN StreaminaM TeamM Telenhonvv MUsen(C) Chande=mail.lob.ohr© DeactivateUserJob.php 3© DeleteScheduledUserAc 37© SetupDefaultSavedSear 3gSyncTolntercom.php© SyncToPlanhat.php© SyncToUserPilot.php© BaseProcessingJob.php© DummyJob.php© ImportRecallAlRecordingsJcImoontkemorelrackJob.onc Job.onoc) JobDispatcher.phpJobDispatcherintertace.pho(C) PurgeSortDeletedepportur( SasVisibilityControl.phpv D Listenersv MActivitiesv ActivitvProvidenuse serializesmodelsorivate strina Sopportunztvid:public function -_construct(Opportunity Sopportunity){...}* Sunc eri obnect data to ensure we have an uo-to-date conu.nublic function handledResolveTeamCrmConnection SresolveTeamCrmConnection.LoagerInterface Sloager.OpportunityRepository SopportunityRepository): void 1Sonnontunitv = ConnontunitvRenositonv->findPvlluid/Sthic->onnontunitvTd)•if (! Sopportunity instanceof Opportunity) {$logger->error(__METHOD_.': Opportunity not found', ('opportunity' => $this->opportunityIdScrmcontia = Sopportunity->crmtry {ScrmService = Sresolveleamcrmconnectzon->resolverorteam(scrmconf1q->qetteamop:> O JustCallv UserPilot© TrackProviderinst 56$logger->info('[' . $crmService->getDisplayName() . '] Syncing opportunity', ['opportunitvid' => sthis->ooportunitvid• M Audia•IM Rotsv D CoachingScrmService->svnc0oportunitv(Sooportunity->crm provider 1d):Mintercom• catch SocialAccountTokeninvalidExcention Sexcention) <v M Planhat© CreateActivityLoc k0// Their account is disconnected, and we are unable to perform this job.$logger->warning('[' . $crmConfig->getProviderName() . '] Failed to sync opportunity', [© CreateCoachingFQube for INE cuadons. Deteat.more securitiscuecin.wour.DLD.files//Tin/Sonar@ube Cloud.for.free//[EMAIL]/leam.more_//Donit.ask.again./itodav 10:25)RematchActivityOnCrmObjectDetach.phpT DeleteCrmEntityTrait.phpAddkateLimitcommand.pnp© Hubspot/Client.php SyncOpportunity.php x HandleRateLimit.php© SyncTeamMetadata.php ©RateLimit.php© Configuration.php= custom.log X = laravel.log« SF [jiminny@localhost]HS_local (jiminny@localhost]# console [PKol)A console (eu)S0 N O"supoont Dally • In 24m100% CThu 7 May 14:38:52U AskJiminnyReportActivityServiceTest v« console [STAGING]mA1 ^ v42:53 UTF-8 # 4 spaces...
|
NULL
|
-9144938243901217772
|
NULL
|
click
|
ocr
|
NULL
|
PhostormcodeFV faVsco.jsProledey© SyncActivity.php PhostormcodeFV faVsco.jsProledey© SyncActivity.php© RateLimitException.php©syncrielametdadld.onp© SyncHubspotObjects.pt©syncLedas.ongURateLimitintenace.phposyneuolects.ongsynceoportunitiesJob.onnamespace Jiminny\Jobs\Crm;© SyncOpportunity.php© SyncProfileMetadata.ph› use ...syncleamrielasJob.on 1zc) syncleammetadata.ong 1gclass syncupporcunlcy excenas Jod 1mplemencs shoulauueue© UpdateOpportunitySpec 19c) Upoarestace.ono07 DealRisks> Mailboxш Meetina3oC) HandleRateLimit.oho(c) RateLimited.onoN StreaminaM TeamM Telenhonvv MUsen(C) Chande=mail.lob.ohr© DeactivateUserJob.php 3© DeleteScheduledUserAc 37© SetupDefaultSavedSear 3gSyncTolntercom.php© SyncToPlanhat.php© SyncToUserPilot.php© BaseProcessingJob.php© DummyJob.php© ImportRecallAlRecordingsJcImoontkemorelrackJob.onc Job.onoc) JobDispatcher.phpJobDispatcherintertace.pho(C) PurgeSortDeletedepportur( SasVisibilityControl.phpv D Listenersv MActivitiesv ActivitvProvidenuse serializesmodelsorivate strina Sopportunztvid:public function -_construct(Opportunity Sopportunity){...}* Sunc eri obnect data to ensure we have an uo-to-date conu.nublic function handledResolveTeamCrmConnection SresolveTeamCrmConnection.LoagerInterface Sloager.OpportunityRepository SopportunityRepository): void 1Sonnontunitv = ConnontunitvRenositonv->findPvlluid/Sthic->onnontunitvTd)•if (! Sopportunity instanceof Opportunity) {$logger->error(__METHOD_.': Opportunity not found', ('opportunity' => $this->opportunityIdScrmcontia = Sopportunity->crmtry {ScrmService = Sresolveleamcrmconnectzon->resolverorteam(scrmconf1q->qetteamop:> O JustCallv UserPilot© TrackProviderinst 56$logger->info('[' . $crmService->getDisplayName() . '] Syncing opportunity', ['opportunitvid' => sthis->ooportunitvid• M Audia•IM Rotsv D CoachingScrmService->svnc0oportunitv(Sooportunity->crm provider 1d):Mintercom• catch SocialAccountTokeninvalidExcention Sexcention) <v M Planhat© CreateActivityLoc k0// Their account is disconnected, and we are unable to perform this job.$logger->warning('[' . $crmConfig->getProviderName() . '] Failed to sync opportunity', [© CreateCoachingFQube for INE cuadons. Deteat.more securitiscuecin.wour.DLD.files//Tin/Sonar@ube Cloud.for.free//[EMAIL]/leam.more_//Donit.ask.again./itodav 10:25)RematchActivityOnCrmObjectDetach.phpT DeleteCrmEntityTrait.phpAddkateLimitcommand.pnp© Hubspot/Client.php SyncOpportunity.php x HandleRateLimit.php© SyncTeamMetadata.php ©RateLimit.php© Configuration.php= custom.log X = laravel.log« SF [jiminny@localhost]HS_local (jiminny@localhost]# console [PKol)A console (eu)S0 N O"supoont Dally • In 24m100% CThu 7 May 14:38:52U AskJiminnyReportActivityServiceTest v« console [STAGING]mA1 ^ v42:53 UTF-8 # 4 spaces...
|
2749
|
NULL
|
NULL
|
NULL
|
|
1108
|
39
|
27
|
2026-05-07T08:01:37.833889+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778140897833_m1.jpg...
|
Alfred
|
Alfred
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
wh
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"wh","depth":1,"bounds":{"left":0.26180556,"top":0.16777778,"width":0.43194443,"height":0.05888889},"on_screen":true,"value":"wh","help_text":"Alfred Search","role_description":"text field","is_enabled":true,"is_focused":true}]...
|
-9142577762416850328
|
-9142577762416850328
|
visual_change
|
hybrid
|
NULL
|
wh
PhpStormFileEditViewNavigateCodeLaravelRefactor wh
PhpStormFileEditViewNavigateCodeLaravelRefactorRunGitDOCKER181DEV (-zsh)X t1DOCKER (-zsh)Last login: Thu May 7 09:29:14 on consolePoetry could not find a pyproject.toml file iocker or its parentswhh|Tools₴2Poetry could not find a pyproject.toml fileocker or its parentsukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/infrastructure/dev/docker (develop) $WindowHelplhl§ Support Daily - in 3h 59 mPROD (ssh)APP (-zsh)*3-zshXIT2PROD (ssh)Run 'do-release-upgrade' to upgrade to it.100% C• ₴4screenpipe"Thu 7 May 11:01:37181• *5PROD2.5.153.87XIY3EU (-zsh)Last login: Thu May7 09:29:14 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parents@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ I|X T4STAGE (-zsh)Last login: Thu May 7 09:29:14 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny$X T5QA (-zsh)Last login: Thu May 7 09:44:56on ttys002Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentsX T6 FE (-zsh)Last login: Thu May 7 09:44:56 on ttys004Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ IX 17 EXT(-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ I|STAGEFRONTENDEXTENSION...
|
1106
|
NULL
|
NULL
|
NULL
|
|
23350
|
987
|
10
|
2026-05-12T07:45:37.627421+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778571937627_m2.jpg...
|
Slack
|
Steliyan Georgiev (DM) - Jiminny Inc - 4 new items Steliyan Georgiev (DM) - Jiminny Inc - 4 new items - Slack...
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Steliyan Georgiev
Petko Kashinski
Galya Dimitrova
Aneliya Angelova
Stefka Stoyanova
Vasil Vasilev
Nikolay Ivanov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Lukas Kovalik
you...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"bounds":{"left":0.5152925,"top":1.0,"width":0.011968086,"height":-0.058260202},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Unreads","depth":21,"bounds":{"left":0.5465425,"top":1.0,"width":0.018284574,"height":-0.09177971},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":21,"bounds":{"left":0.5465425,"top":1.0,"width":0.01761968,"height":-0.09177971},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":21,"bounds":{"left":0.5465425,"top":1.0,"width":0.018284574,"height":-0.09177971},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":21,"bounds":{"left":0.5465425,"top":1.0,"width":0.02925532,"height":-0.09177971},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":21,"bounds":{"left":0.5980718,"top":1.0,"width":0.0026595744,"height":-0.09177971},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":21,"bounds":{"left":0.5465425,"top":1.0,"width":0.024268618,"height":-0.09177971},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"bugs","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"general","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"random","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"sofia-office","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"support","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Petko Kashinski","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Lukas Kovalik","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"you","depth":23,"on_screen":false,"role_description":"text"}]...
|
-9142285741213620008
|
-1207856411944804693
|
click
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Steliyan Georgiev
Petko Kashinski
Galya Dimitrova
Aneliya Angelova
Stefka Stoyanova
Vasil Vasilev
Nikolay Ivanov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Lukas Kovalik
you
Firefox•.•EditVIewMistorToolsNew Tab• Jy 20820 es reindex stream mode# (UY-20725) [HubSpot] Optimise CF@ Jy-20725 add HS rate limit handlilO'Pipolines - jiminny/appf Pull requests • jiminny/app4 (JY-20773) User Pilot not receivins@JY-20773 fix user pilot tracking ofr(UY-20776] Automated report -) TypeError: League|Flysystem|Files)2 Platform Sprint 3 Q2 - Platform Te:Q JY-20625 | JY-20742 | MCP PОС Ь= Data Explorer— New TabbookmarksProtllesWindowmelpny.aulasslan.nerorowse/Jt=20//0O JIMINNY@ For you• Recent|# Starred8f Apps0, Spaces+...Recent2 Jiminny (New) + ...IWD Platform TeamIID Capture TeamID Enterprise Stability I…..W Processing TeamWID SE Kanban(Q Service-Desk= More spaces= FiltersCB Dashboards@ Operations& Confluence: Teams= Customise sidebarC 80 libl O l Support Daily- in 4h 15m A100% C/3 & • Tue 12 May 10:45:3701&E ASK ROVO A ® Lô 0Q SearchSpaces / E Jiminny (New) / & sY-18631 / #f JY-20776• Kev derallsDescriptionWe still get Sentry error when attempting to send report result without pdf url.• We need to mark such a report as failed so it is not picked up for sending again in one hour.• fix the issue so we can have a generated report for the customerSteps to reproduceNoneActual outcomeAdd textExpected outcomeAdd textSubtasksAdd subtaskLinked work itemsAdd linked work item~ ActivityAllComments History Work logAdd a comment…..Suggest a reply... Who is working on this...? Status update...Pro tip: press M) to commentLukas KovalikNormaltext v | B I .. |Av|: »+voThere are few more errors. we need to confirm the case is the same as the sentry error from the description (seems so on the quick alance).Cancel+ CreateDetailsReporterDevelopmentLabelsSub-ProductStory PointsOrganisationsComponentsFix versionsParentSprintPriorityRegressionDaysNeed QACanny LinksE Lukas KovalikQ Open with VS Code3 Create branch{ Create commitNoneAdd options3None(PlatformNone• JY-18631 Automate Exec reports in the productPlatform Sprint 4 Q2= MediumNO2Add optionOpen Canny Links> More fields Story point estimate, Original estimate, Time tracking> Automation 4 Rule executions> featureOS OpenfeatureOS> Sentry all Linked IssuesCreated 28 April 2026 at 16:18Updated 1 hour agosôs Configure...
|
23348
|
NULL
|
NULL
|
NULL
|
|
14209
|
631
|
5
|
2026-05-09T17:05:52.717454+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-09/1778 /Users/lukas/.screenpipe/data/data/2026-05-09/1778346352717_m1.jpg...
|
Firefox
|
Claude — Personal
|
True
|
claude.ai/settings/connectors
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Please fill out this field.
Pull requests · screen Please fill out this field.
Pull requests · screenpipe/screenpipe · GitHub
Close tab
DNS / Nameservers | Hostinger
Close tab
Nginx Proxy Manager
Close tab
Screenpipe — Archive
Close tab
SQLite Web: archive.db
Close tab
SQLite Web: db.sqlite
Close tab
screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub
Close tab
DXP4800PLUS-B5F8
Close tab
AFFiNE - All In One KnowledgeOS
Close tab
All docs · AFFiNE
Close tab
Payments Logger
Close tab
Your old PC can run Windows 11 in a VM, but not on bare metal - [EMAIL] - Gmail
Close tab
Location Logger
Close tab
Finance Hub
Close tab
Finance Hub
Close tab
Select: transactions - db - Adminer
Close tab
Claude Code | Claude Platform
Close tab
Claude
Close tab
lakylak/finance-hub - finance-hub - Gitea: Git with a cup of tea
Close tab
Applications - Admin - authentik
Close tab
New Tab
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Customize sidebar
Home
Close sidebar
New chat
New chat
⇧⌘O
Search
Search
⌘K
Chats
Chats
Projects
Projects
Code
Code
Customize
Customize
Design
Design
More
More
Starred
Starred
Bulgarian citizenship application process for EU residents
Bulgarian citizenship application process for EU residents
Dawarich location tracking project
Dawarich location tracking project
Recents Hide
Recents
Hide
Code diff review
Code diff review
HubSpot rate limit implementation strategy
HubSpot rate limit implementation strategy
Screenpipe retention policy code location
Screenpipe retention policy code location
Viewing retention policy in screenpipe
Viewing retention policy in screenpipe
Clean shot x video recording termination issue
Clean shot x video recording termination issue
HubSpot rate limit handling with executeRequest
HubSpot rate limit handling with executeRequest
Untitled
Untitled
💬 Screen pipe. Is there ability…
💬 Screen pipe. Is there ability…
SMB mount access inconsistency between Finder and iTerm
SMB mount access inconsistency between Finder and iTerm
💬 What is the best switch I can…
💬 What is the best switch I can…
Permission denied on screenpipe volume
Permission denied on screenpipe volume
Screenpipe sync database attachment error
Screenpipe sync database attachment error
Last swimming outing with Dani
Last swimming outing with Dani
Definition of incarcerated
Definition of incarcerated
Chromecast remote volume buttons not working
Chromecast remote volume buttons not working
Salesforce API errors with Organization and FieldDefinition queries
Salesforce API errors with Organization and FieldDefinition queries
Daily activity summary from screenpipe data
Daily activity summary from screenpipe data
MacBook unexpected restarts and kanji screen
MacBook unexpected restarts and kanji screen
Security patch review and testing guidance
Security patch review and testing guidance
Food calorie values reference
Food calorie values reference
Tracking location history from last week
Tracking location history from last week
Screenpipe WAL processing when stopped
Screenpipe WAL processing when stopped
Reviewing recent conversation highlights
Reviewing recent conversation highlights
Mac aliases not recognized
Mac aliases not recognized
Boosteroid still recording despite ignored windows setting
Boosteroid still recording despite ignored windows setting
Missing JavaScript promise in authorization response
Missing JavaScript promise in authorization response
Linux SQLite UI for NAS
Linux SQLite UI for NAS
Claude API 500 internal server error
Claude API 500 internal server error
Screenpipe query capabilities and usage
Screenpipe query capabilities and usage
eGPU compatibility with Mac mini and Studio
eGPU compatibility with Mac mini and Studio
All chats
All chats
Lukas Kovalik, Settings
LK
Lukas Kovalik
Pro plan
Get apps and extensions
Settings
Settings
General
General
Account
Account
Privacy
Privacy
Billing
Billing
Usage
Usage
Capabilities
Capabilities
Connectors
Connectors
Claude Code
Claude Code
Claude in ChromeBeta
Claude in Chrome
Beta
Connectors
Connectors
Allow Claude to reference other apps and services for more context.
Connectors have moved to
Customize
Customize
.
Browse connectors
Discovery
Let Claude surface connectors from the directory that may be relevant to your conversation.
Discovery
Notion
Configure
More options for Notion
GitHub Integration
Connect
Gmail
Connect
More options for Gmail
Google Calendar
Connect
More options for Google Calendar
Google Drive
Connect
More options for Google Drive
Finance Hub
CUSTOM
https://finance-mcp.lakylak.xyz/mcp
More options for Finance Hub
Location Logger
CUSTOM
Connection has expired. You can reconnect to re-authenticate.
Connect
More options for Location Logger
Reminders
CUSTOM
Connection has expired. You can reconnect to re-authenticate.
Connect
More options for Reminders
Add custom connector...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Please fill out this field.","depth":2,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · screenpipe/screenpipe · GitHub","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"DNS / Nameservers | Hostinger","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Nginx Proxy Manager","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"SQLite Web: archive.db","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"SQLite Web: db.sqlite","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"AFFiNE - All In One KnowledgeOS","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"All docs · AFFiNE","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Payments Logger","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Your old PC can run Windows 11 in a VM, but not on bare metal - kovaliklukas@gmail.com - Gmail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Location Logger","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Select: transactions - db - Adminer","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Claude Code | Claude Platform","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Claude","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"lakylak/finance-hub - finance-hub - Gitea: Git with a cup of tea","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Applications - Admin - authentik","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"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,"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,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Home","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Close sidebar","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"New chat","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New chat","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"⇧⌘O","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Search","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Search","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"⌘K","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Chats","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Chats","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Projects","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Projects","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Customize","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customize","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Design","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Design","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More","depth":12,"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":"More","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Starred","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Starred","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Bulgarian citizenship application process for EU residents","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Bulgarian citizenship application process for EU residents","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Dawarich location tracking project","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Dawarich location tracking project","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recents Hide","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Recents","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Hide","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code diff review","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code diff review","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"HubSpot rate limit implementation strategy","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"HubSpot rate limit implementation strategy","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Screenpipe retention policy code location","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe retention policy code location","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Viewing retention policy in screenpipe","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Viewing retention policy in screenpipe","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Clean shot x video recording termination issue","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Clean shot x video recording termination issue","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"HubSpot rate limit handling with executeRequest","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"HubSpot rate limit handling with executeRequest","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Untitled","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Untitled","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"💬 Screen pipe. Is there ability…","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"💬 Screen pipe. Is there ability…","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SMB mount access inconsistency between Finder and iTerm","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SMB mount access inconsistency between Finder and iTerm","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"💬 What is the best switch I can…","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"💬 What is the best switch I can…","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Permission denied on screenpipe volume","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Permission denied on screenpipe volume","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Screenpipe sync database attachment error","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe sync database attachment error","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Last swimming outing with Dani","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Last swimming outing with Dani","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Definition of incarcerated","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Definition of incarcerated","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Chromecast remote volume buttons not working","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Chromecast remote volume buttons not working","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Salesforce API errors with Organization and FieldDefinition queries","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Salesforce API errors with Organization and FieldDefinition queries","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Daily activity summary from screenpipe data","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Daily activity summary from screenpipe data","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"MacBook unexpected restarts and kanji screen","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MacBook unexpected restarts and kanji screen","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security patch review and testing guidance","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security patch review and testing guidance","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Food calorie values reference","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Food calorie values reference","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Tracking location history from last week","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Tracking location history from last week","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Screenpipe WAL processing when stopped","depth":16,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe WAL processing when stopped","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reviewing recent conversation highlights","depth":16,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reviewing recent conversation highlights","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Mac aliases not recognized","depth":16,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Mac aliases not recognized","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Boosteroid still recording despite ignored windows setting","depth":16,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Boosteroid still recording despite ignored windows setting","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Missing JavaScript promise in authorization response","depth":16,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Missing JavaScript promise in authorization response","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Linux SQLite UI for NAS","depth":16,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Linux SQLite UI for NAS","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Claude API 500 internal server error","depth":16,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude API 500 internal server error","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Screenpipe query capabilities and usage","depth":16,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe query capabilities and usage","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"eGPU compatibility with Mac mini and Studio","depth":16,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"eGPU compatibility with Mac mini and Studio","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"All chats","depth":14,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All chats","depth":17,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Lukas Kovalik, Settings","depth":12,"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":"LK","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukas Kovalik","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pro plan","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Get apps and extensions","depth":14,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Settings","depth":10,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Settings","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"General","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"General","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Account","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Account","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Privacy","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Privacy","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Billing","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Billing","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Usage","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capabilities","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capabilities","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Connectors","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Connectors","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Claude Code","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude Code","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Claude in ChromeBeta","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude in Chrome","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Beta","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Connectors","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Connectors","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Allow Claude to reference other apps and services for more context.","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Connectors have moved to","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Customize","depth":14,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customize","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Browse connectors","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Discovery","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Let Claude surface connectors from the directory that may be relevant to your conversation.","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Discovery","depth":14,"on_screen":true,"help_text":"","role_description":"switch","subrole":"AXSwitch","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Notion","depth":15,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Configure","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"More options for Notion","depth":15,"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":"GitHub Integration","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Connect","depth":14,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Gmail","depth":15,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Connect","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"More options for Gmail","depth":15,"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":"Google Calendar","depth":15,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Connect","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"More options for Google Calendar","depth":15,"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":"Google Drive","depth":15,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Connect","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"More options for Google Drive","depth":15,"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":"Finance Hub","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CUSTOM","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"https://finance-mcp.lakylak.xyz/mcp","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"More options for Finance Hub","depth":15,"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":"Location Logger","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CUSTOM","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Connection has expired. You can reconnect to re-authenticate.","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Connect","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"More options for Location Logger","depth":15,"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":"Reminders","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CUSTOM","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Connection has expired. You can reconnect to re-authenticate.","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Connect","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"More options for Reminders","depth":15,"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":"Add custom connector","depth":15,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false}]...
|
-9140771024275935695
|
-1558425718214484898
|
click
|
accessibility
|
NULL
|
Please fill out this field.
Pull requests · screen Please fill out this field.
Pull requests · screenpipe/screenpipe · GitHub
Close tab
DNS / Nameservers | Hostinger
Close tab
Nginx Proxy Manager
Close tab
Screenpipe — Archive
Close tab
SQLite Web: archive.db
Close tab
SQLite Web: db.sqlite
Close tab
screenpipe/.claude/skills at main · screenpipe/screenpipe · GitHub
Close tab
DXP4800PLUS-B5F8
Close tab
AFFiNE - All In One KnowledgeOS
Close tab
All docs · AFFiNE
Close tab
Payments Logger
Close tab
Your old PC can run Windows 11 in a VM, but not on bare metal - [EMAIL] - Gmail
Close tab
Location Logger
Close tab
Finance Hub
Close tab
Finance Hub
Close tab
Select: transactions - db - Adminer
Close tab
Claude Code | Claude Platform
Close tab
Claude
Close tab
lakylak/finance-hub - finance-hub - Gitea: Git with a cup of tea
Close tab
Applications - Admin - authentik
Close tab
New Tab
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Customize sidebar
Home
Close sidebar
New chat
New chat
⇧⌘O
Search
Search
⌘K
Chats
Chats
Projects
Projects
Code
Code
Customize
Customize
Design
Design
More
More
Starred
Starred
Bulgarian citizenship application process for EU residents
Bulgarian citizenship application process for EU residents
Dawarich location tracking project
Dawarich location tracking project
Recents Hide
Recents
Hide
Code diff review
Code diff review
HubSpot rate limit implementation strategy
HubSpot rate limit implementation strategy
Screenpipe retention policy code location
Screenpipe retention policy code location
Viewing retention policy in screenpipe
Viewing retention policy in screenpipe
Clean shot x video recording termination issue
Clean shot x video recording termination issue
HubSpot rate limit handling with executeRequest
HubSpot rate limit handling with executeRequest
Untitled
Untitled
💬 Screen pipe. Is there ability…
💬 Screen pipe. Is there ability…
SMB mount access inconsistency between Finder and iTerm
SMB mount access inconsistency between Finder and iTerm
💬 What is the best switch I can…
💬 What is the best switch I can…
Permission denied on screenpipe volume
Permission denied on screenpipe volume
Screenpipe sync database attachment error
Screenpipe sync database attachment error
Last swimming outing with Dani
Last swimming outing with Dani
Definition of incarcerated
Definition of incarcerated
Chromecast remote volume buttons not working
Chromecast remote volume buttons not working
Salesforce API errors with Organization and FieldDefinition queries
Salesforce API errors with Organization and FieldDefinition queries
Daily activity summary from screenpipe data
Daily activity summary from screenpipe data
MacBook unexpected restarts and kanji screen
MacBook unexpected restarts and kanji screen
Security patch review and testing guidance
Security patch review and testing guidance
Food calorie values reference
Food calorie values reference
Tracking location history from last week
Tracking location history from last week
Screenpipe WAL processing when stopped
Screenpipe WAL processing when stopped
Reviewing recent conversation highlights
Reviewing recent conversation highlights
Mac aliases not recognized
Mac aliases not recognized
Boosteroid still recording despite ignored windows setting
Boosteroid still recording despite ignored windows setting
Missing JavaScript promise in authorization response
Missing JavaScript promise in authorization response
Linux SQLite UI for NAS
Linux SQLite UI for NAS
Claude API 500 internal server error
Claude API 500 internal server error
Screenpipe query capabilities and usage
Screenpipe query capabilities and usage
eGPU compatibility with Mac mini and Studio
eGPU compatibility with Mac mini and Studio
All chats
All chats
Lukas Kovalik, Settings
LK
Lukas Kovalik
Pro plan
Get apps and extensions
Settings
Settings
General
General
Account
Account
Privacy
Privacy
Billing
Billing
Usage
Usage
Capabilities
Capabilities
Connectors
Connectors
Claude Code
Claude Code
Claude in ChromeBeta
Claude in Chrome
Beta
Connectors
Connectors
Allow Claude to reference other apps and services for more context.
Connectors have moved to
Customize
Customize
.
Browse connectors
Discovery
Let Claude surface connectors from the directory that may be relevant to your conversation.
Discovery
Notion
Configure
More options for Notion
GitHub Integration
Connect
Gmail
Connect
More options for Gmail
Google Calendar
Connect
More options for Google Calendar
Google Drive
Connect
More options for Google Drive
Finance Hub
CUSTOM
https://finance-mcp.lakylak.xyz/mcp
More options for Finance Hub
Location Logger
CUSTOM
Connection has expired. You can reconnect to re-authenticate.
Connect
More options for Location Logger
Reminders
CUSTOM
Connection has expired. You can reconnect to re-authenticate.
Connect
More options for Reminders
Add custom connector...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
9826
|
443
|
14
|
2026-05-08T13:36:29.654124+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-08/1778 /Users/lukas/.screenpipe/data/data/2026-05-08/1778247389654_m1.jpg...
|
PhpStorm
|
faVsco.js – SyncRelatedActivityManager.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
iTerm2Shell Edit ViewSessionScripts|ProfilesWindowHelp‹ >0 lobl100% C8APP (-zsh)DOCKERDEV (docker)882JY-20773-fix-automated-reports-user-pilot-trackingJY-20157-AJ-report-not-send-notificationJY-20508-notify-before-AJ-report-expirationJY-20372-ai-reports-promotion-pagesJY-20352-sync-opportunities-without-a-local-owner-user-id-is-nullJY-20738-debug-AJ-tracking-UPAPP (-zsh)-zshJY-18909-automated-reports-ask-jiminnyJY-20692-fix-integration-app-[API_KEY]@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ co -b JY-20725-handle-HS-search-rate-limitSwitched to a new branch 'JY-20725-handle-HS-search-rate-limit'Lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ I• 84screenpipe*•$5-zshFri 8 May 16:36:32T₴1|₴6APP...
|
9825
|
NULL
|
NULL
|
NULL
|
|
14980
|
672
|
11
|
2026-05-11T06:07:59.359545+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778479679359_m1.jpg...
|
PhpStorm
|
faVsco.js – Hubspot/Service.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Term2ShellEditViewSessionProfilesWindowHelp(ahlDaily - Platform • in 38 m100% <78• Mon 11 May 9:07:59DOCKER (docker-compose)• *3181DOCKERDEV (-zsh)О 882APP (-zsh)L1DOCKER (docker-compose)QbdHhS--oxdRRkJZGww}{[IP_ADDRESS]{[IP_ADDRESS]:9300}{cdhilmrstw}{ml.machine_memory=4109217792, xpack.installed=true,transform.node=true,ml.max_open_jobs=20}]}" }elasticsearch1 {"type":"timestamp":"2026-05-11T06:07:11,100Z","level": "I"component":"o.e.c.s.ClusterApplierService""cluster.name" :"docker-cluster"ode.name":"e802ad473a4f""message": "master node{previous (], current [{e802ad473a4f}{e2ZKzgw4Q4aCf2w51jWr1A}-{ORUQbdHhS--OxdRRkJZGww}{[IP_ADDRESS]}{[IP_ADDRESS]:9300}{cdhilmrstw}{ml.machine_memory=4109217792, xpack.installed=true,transform.node=true,x_open_jobs=20}]}, term:239, version: 8756, reason: Publication{term=239, version=8756}}elasticsearchI {"type":"timestamp": "2026-05-11T06:07:11,170Z", "level": "INFO", "component":"o.e.h.AbstractHttpServerTransport""cluster.name":"docker-cluster""node. name":"e802ad473a4f""message":"publish_address{[IP_ADDRESS]:9200}, bound_addresses {[::]:9200}","cluster.uuid": "8uhZw1CUSGyWYR_OvaKx6g","node.id": "e2ZKzgw404aCf2elasticsearch1 {"type":"server""timestamp" :NFO""component":"o.e.n.Node""cluster.name":"2026-05-11T06:07:11,171Z","level": "I"docker-cluster""node. name":"e802ad473a4f""message": "started", "cluster.uuid": "8uhZw1CUSGyWYR_OvaKx6g","node.id": "e2ZKzgw4Q4aCf2w51jWr1A" }elasticsearchI {"type": "server""timestamp": "2026-05-11T06:07:11, 655Z""level":"INFO","component":"o.e.l.LicenseService","e802ad473a4f""cluster.name":"docker-cluster","node.name""message": "license [85e882e5-5714-4173-a5dd-9baa841494a0] mode] -valid", "cluster.uuid": "8uhZwICUSGyWYR_OvaKx6g", "node.id": "e2ZKzgw4Q4aCf2w51jWr1AI {"type": "server", "timestamp": "2026-05-11T06:07:11,665Z","level": "INFO", "component": "o.e.g.GatewayService","docker-cluster""node. name": "e802ad473a4f"., "message": "recovered [15] indices into cluster_state","cluster.uuid": "8uhZw1CUSGyWYR_OvaKx6g", "node.id": "e2ZKzgw4Q4aCf2w51jWr1A"1 t=2026-05-11T06:07:12+0000 lvl=warn msg="failed to open private leg" id=bbbf4561a337 privaddr=lamp:3080 err="dial tcp [IP_ADDRESS]:3080: connect: connection reft=2026-05-11T06:07:15+0000 lvl=warn msg="failed to open private leg" id=5c5a6ebcfad1 privaddr=lamp:3080 err="dial tcp [IP_ADDRESS]:3080: connect: connection refelasticsearchI {"type": "server""timestamp": "2026-05-11T06:07:15,845Z", "level": "I"component":"o.e.c.r.a.AllocationService","e802ad473a4f""cluster.name":"docker-cluster""message": "Cluster health statuschanged from [RED] to [YELLOW] (reason: [shards started [[activities_testing][0]]]).", "cluster.uuid": "8uhZw1CUSGyWYR_OvaKx6g","node.id":"e2ZKzgw4Q4aCf2w51jWr1A"| 1:M 11 May 2026 06:07:22.494 * DB loaded from append only file: 28.805secondsredis| 1:M 11 May 2026 06:07:22.494 * Ready to accept connections-zsh84-zsh12PROD (-zsh)'24.04.4 LTS' available.'do-release-upgrade' to upgrade to it.885screenpipe"System restart required ***Last login: Mon Apr 27 07:45:27 2026 from 212.5.153.87Last login: Thu May7 09:29:14 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parents@Lukas-KovaliMaсBook-Pro-Jiminny ~ $ I|T4STAGE (-zsh)*** System restart required ***Last login: Tue Apr 28 06:25:10 2026 from 212.5.153.87lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ |T5 QA (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parents- $I16 FE (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsO 86PRODSTAGEFRONTENDPoetry could not finda pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ||X 27 EXT (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not finda pyproject.toml file in /Users/lukas or its parentsukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lEXTENSIONView in Docker Desktop@ View ConfigEnable Watch...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
14999
|
673
|
20
|
2026-05-11T06:08:45.274567+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778479725274_m2.jpg...
|
PhpStorm
|
faVsco.js – Hubspot/Service.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8081782,"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":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"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 'AskJiminnyReportActivityServiceTest'","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 'AskJiminnyReportActivityServiceTest'","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":"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,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
PhostormFV faVsco.js~ViewINavicarecode%9 JY-20725-handle-HS-search-rate-limiroledey© TeamOwnerService.php© TeamService.php(C) TranscodeParameterResc© UserService.phpC) Uuid.pnp> D TraitsDUseCases> DUser> D Utils› D Validation© HubspotSyncStrategyBase.phpT SyncCrmEntitiesTrait.phpCachedcrmservicebecorator.onpphp nelpers.ongInitialFrontendState.php© Jiminny.php© Plan.phpC) Serializer.oho© TeamScimDetails.phpbootstrap> D build→ contio> O contribM database• M docsO front-end• C lang› [ node_modules library root> O phpstan> D public› Dresourcesv D routesphp api.phppnp api_vz.ongpnp console.ongpnp customer_api.pnppnp emoedded.onophp health.phpphp scim.phpphp web.phpphp webhook.php>Mscriots~ D storage•aoo> D debugbarM frameworkv Mloas.aitianoreel audio wav= cuctom loal© MatchActivityCrmData.php© CrmActivityService.php* RateLimitexception.png© MatchCrmData.phpclass Service extends BaseService 1mplements914931* dreturn nulularrousLead|null,Opportunity|null,ContactlnulaStage|nult,strinalnulpublic function matchByDomain(string $domain, ?int $userId = null): ?array$companyName = $domain;// Try to find a company matching their email domain.ScompanyProperties = [countryonone"name""hs_avatar_filemanager_key','industry' .l"hubspot_owner_id',ShsAccounts = sthis->cuient->aetinstanceol->comoanieso->search?vlomainScomnanvName. Scomnanv?ronerties)catch uthrowable se) *"ennont => Se->aetMessaaeolI"domain' => Sdomaininotunn null.937Saccount = null;// If there are multiple accounts, don't guess, we'll ask later.if (|count(ShsAccounts->data-›results) === 1) {// Persist this remote object.Saccount = $this->syncAccount($hsAccounts->data-›results[0]->companyId);E hubspot-journal-poll.log= laravel lodolner Code will hoin INF to underctand vour Laravel ann code II Generate II Don't Show Anvmore (maments aao)© ProspectCache.phpС Cпескапокetrукemotematch.ongм|×3 ^.II I IIII 1E custom.log xA SF jiminny@localhost]A HS_Jocal (jiminny@localhost]# console [PKOb.# console [euJ# console [slAGiNg)[2026-05-07 14:21:15] Local. INFO: [Hubspot] DEBUG Getting headers {"neaders".?"Uace":L"Inu,or May 2020 14.21.15 6Ml"Jn"Transter-Encod1nq":"chunked")"Connection":"keep-alive""CF-Ray" : ["9f80deb8db60dc3a-SOF"],"Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"].acceot-encodino"access-control-allow-credentials": ["false"],"server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-hubspot-correlation-id":["019e02d0-6fd8-7812-bdba-885b7ccb3ee3"],"Set-Cookie":["__cf_bm=SIUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtmOY-1778163675-[IP_ADDRESS]-May-26 14:51:15 GMT; domain=.hubapj.com; Http0nly; Secure; SameSite=None"],"Report-To" : ["{\"endpoints)":[{\"urz\":\"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RW\"group\" :\"cf-nell",\"max_age\":604800}"],"NEL" : ["{\"success_fraction\":0.01,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"Server": ["cLoudflare"]H} {"correlation_1d":"95256555-ec98-4541-b9za-adta/sboyeab"."trace_10":C/AD8565-905t-4604-9405-0e5b551e5545"CascadeNew Cascade114 1111© HubSpot CRM Call ReviewC Investigating Rate Limit Errors© HubSpot Rate Limit ReviewAsk anything (38AL)+ « CodeC Adantive40 ll | Daily - Platform • in 37 mAskJiminnyReportActivityServiceTest100% (. • Mon 11 May 9:08:44+0 ..Cascade CodexKick off a new project. Make changesacross your entre codedase.WN Windsurf Teams014-24 UITE.8f?4 spaces...
|
14996
|
NULL
|
NULL
|
NULL
|
|
15007
|
673
|
24
|
2026-05-11T06:09:00.202053+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778479740202_m2.jpg...
|
PhpStorm
|
faVsco.js – Hubspot/Service.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8081782,"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":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"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 'AskJiminnyReportActivityServiceTest'","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 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
PhostormFV faVsco.js~VIewINavicareCode%9 JY-20725-handle-HS-search-rate-limitroledey© RemoteCrmObjectn© ResponseNormalizeg service.onpg) syncrielaAction.onC) synckelatedAcuivilc) wednooksynebalc~ D IntegrationApp› D Accessors896C Api• contioDDTO• D FiltersHoosProsoectSearchstr• ServiceTraitsC) DataClient. oho©DecorateActivity.pt904 CC) LocalSearch.ohv© LocalSearchinterfac© RemoteSearch.php© Service.phpv D Listeners© ConvertLeadActivit© PurgeLookupCache911>D Metadata>D Migration> D Pipedrive© HubspotSyncStrategyBase.phpCachedcrmservicebecorator.onp© ProspectCache.phpС Cпескапокetrукemotematch.ong© MatchacuivitycrmData.ong© CrmActivityService.phpclass Service extends Baseservice 1mpLements* dreturn nulularrousLead|null,Accountlnulz.Opportunity|null,Contactlnul.Stage|nult,string|null=| A7 A47 X3 A y 15public function matchByDomain(string $domain, ?int $userId = null): ?array$companyName = $domain;// Try to find a company matching their email domain.ScompanyProperties = [countryInhone"name""hs_avatar_filemanager_key',11!=31Console,Log xChanaes 12 filed= env.local aon© Client.php app/Services/Crm/Hubspot© HandleHubspotRateLimit.php app/Jobs/Middleware© HubspotClientinterface.php app/Services/Crm/Hubspot© HubspotPaginationService.php app/Services/Crm/Hubspot/Pagination©JiminnyDebugCommand.php app/Console/Commandsphe logging.php config©MatchActivityCrmData.php app/Jobs/Crm© MatchCrmData.php app/Jobs/Activity/Import© PaginationState.php app/Services/Crm/Hubspot/Pagination© RateLimitException.php app/Exceptions© Service.php app/Services/Crm/Hubspot~ Unversioned Files 10 files= env.local.dak appE .env.nikilocal app= env.other apo|< → E, Side-by-side viewerDo not ignoreCurrent version tests/Unit/Policies/CanAccessAiReportsTest.phpHighlight words tx ?<?ohpdeclare(strict types=1)namespace Tests Unit Policlesuse Jaminny contracts Acu Permisszonenum•Jaminny Models TeamJiminny Policies UserPolicvuse Jiminny|Repositories\AutomatedReportsRepository;use PHPUnit\Framework\Mock0bject\Mock0bject;use puPllni+ Enamewonk Tecttase:C) CreateMockaskJiminnvReportResultCommand,oho apo/Console/Commands/ReF favicon.ico public= ids.txt aodTa raw_sql_query.sql appelper Code will help IDE to understand your Laravel app code. // Generate // Don't Show Anymore (moments ago)class CanAccessAiReportsTest extends TestCaseprivate AutomatedReportsRepository&Mock0bject $automatedReportsRepository;private UserPolicy $policy;laravel.log# console [PKOb.A console (EU]A SF jiminny@localhost]A console (STAGING]A HS_Jocal (jiminny@localhost]accept-encoding"],"access-control-allow-credentials": ["false"],"server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3)",cfr;desc=\"9f80deb8e7c6dc3a-IAD)""],"x-content-type-options": ["nosniff"],"x-hubspot-correlation-id" : ["019e02d0-6fd8-7812-bdba-885b7ccb3ee3"],"Set-Cook¡e":["__сf_bm=SIUrtdQgXVc¿k50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-May-26 14:51:15 GMT; domain=.hubapi.com; HttpOnly; Secure; SameSite=None"],"керогс-10":"1enapolnus"."url":nccos:a.nel.cloudtlare.comredorcV4.S=NYALSVIPorymszorSUnxY24S0ZKh"max_age\":6048005"J,"NEL": ["{"success fraction":0.01.\"report_tol":\"cf-nell","max ade".604800-""Server": ["cloudflare"]f}{"correlation_id":"95236535-ec98-4541-b92a-adfa73b69eab" ,"trace id":"c7ab8365-903f-46d4-9403-0e5b551e3545"*|CascadeNew Cascade© HubSpot CRM Call Review© Investigating Rate Limit Errors© HubSpot Rate Limit ReviewAsk anything (2AL)+ <> CodeSAdaptive50 lil| Daily - Platform • in 37mAskJiminnyReportActivityServiceTestvA100%C&• Mon 11 May 9:08:59+0 ..Cascade Code & ••Kick oft a new oroiect. Make chancesacross vour entire codebase.W Windsurf Teams 908:62 UTF-8 P 4 spaces...
|
15005
|
NULL
|
NULL
|
NULL
|
|
15090
|
674
|
12
|
2026-05-11T06:16:01.157252+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778480161157_m1.jpg...
|
PhpStorm
|
faVsco.js – Hubspot/Service.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","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":"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_selected":false,"is_expanded":false}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
iTerm2•00ShellEditViewSessionScriptsProfilesWindowHelpDEV (docker)DOCKERO 81DEV (docker)882APP (-zsh)• жзmasterJY-20818-move-AJ-reports-to-separated-datadog-metricJY-20773-fix-automated-reports-user-pilot-trackingJY-20157-AJ-report-not-send-notificationJY-20508-notify-before-AJ-report-expirationJY-20372-ai-reports-promotion-pagesJY-20352-sync-opportunities-without-a-local-owner-user-id-is-nullJY-20738-debug-AJ-tracking-UPJY-18909-automated-reports-ask-jiminnyJY-20692-fix-integration-app-[API_KEY] laysJY-20698-fix-SF-activity-types-on-new-playbookJY-20543-AJ-report-trackingJY-20384-handle-auto-sync-with-no-access-to-event-typeJY-20458-ask-Jiminny-user-definitionsJY-19666-fix-import-contacts-account-associationJY-19666-HS-import-contacts-and-accounts-batch-jobJY-20458-Ask-Jiminny-ReportsJY-20200-batch-update-CRM-objects-SalesforceJY-19666-HS-webhooks-add-contact-and-companyJY-20348-trigger-setup-DI-layout-on-team-creationJY-20326-refactor-info-message-in-commandJY-20317-fix-auto-log-delay-issue-on-all-channels-disabledJY-20312-remove-on-update-change-last-synced-at-crm-configurationsJY-20306-SF-skip-auto-sync-for-task-based-playbookJY-20192-remove-deleted-team-from-saved-search-filtersJY-20197-import-opportunity-batch-jobJY-20293-enable-status-field-for-pipedrive-dealsJY-20191-remove-commands-interactive-promptsJY-20118-change-default-sync-strategyJY-20183-add-cache-on-auto-log-delayJY-20197-add-import-opportunity-batch-job20118-hs-opportunity-make-webhook-strategy-defaultJY-20118-make-default-hs-opportunity-sync-strategy-webhook-basedJY-20196-handle-opportunity-without-noteJY-20118-improve-opportunity-importJY-20189-handle-activity-search-on-deleted-groupsJY-20160JY-20145-filter-out-converted-leads-when-matchingJY-20150-skip-push-summary-on-summary-ready-1f-autologJY-20132-fix-note-encodingJY-19792-clean-logslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ devroot@docker_lamp_1:/home/jiminny# ](ahl| Daily - Platform • in 30 mA100% C47 8• Mon 11 May 9:16:001881-zsh-zsh885screenpipe"0 ₴6DEV...
|
15087
|
NULL
|
NULL
|
NULL
|
|
15186
|
679
|
22
|
2026-05-11T06:26:05.930380+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778480765930_m2.jpg...
|
PhpStorm
|
faVsco.js – Client.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8081782,"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":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"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 'AskJiminnyReportActivityServiceTest'","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 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
visual_change
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
PhostormVIewINavicareCodeKeractorFV faVsco.js?9 JY-20725-handle-HS-search-rate-limitroledey© SyncRelatedActivityManager.php© TrackRecordingFileSiz© TrackRecordingSizeEnT. ValidateSmitProspect:yhuospotsyncstrategybase.ongCachedcrmservicebecorator.onp© ProspectCache.phpAjReportsD Avatar0 CalendarConference0 Crm>@ Bullhorn>C CloseC Copper© MatchActivityCrmData.php© CrmActivityService.phg© MatchCrmData.phpclass Cllent extends Baseclient 1mpLements HubspotclientintertaceM | A2 A64 X1X1A Vpublicfunction 1sUnauthorizedexception(\exception se): bool848// BadRequest can contain 401 status codesreturn $e->getCode === 401;>J Crmobiects07 DecorateActivitv851• Dummy) Helpersv h HubspotAccountSvncStrate// Check for HTTP client exceptions with status codesif (Se instanceof \GuzzleHttp\Exception \RequestException && $e->hasResponseO) ‹Sresponse = $e->getResponseO:if (Sresponse !== null) {return Sresponse->getStatusCode === 401;II 1 IMШ>D Actionsa ContactsuncStratedm FieldsSmessage = strtolower(se->qethessageoo• M lournal1 Metadatalreturn str containsSmessage.'401 unauthorized') 11vOpportunitvSvncStstr contains(Smessage.i'http 401') 11• M Concerns.(c) Hubsnotl actMonstatus code 481')Corea match pattern'/\b401\b/', $message) === 1 && str_contains($message, 'unauthorized'))Console,Log XChanaes 12 filed= env.local aonTJ0 + → Side-by-side viewer •8 35f036ac app/Services/Crm/Hubspot/Client.phgDo not ignoreHighlight wordsx 13 B ?C) Client.oho aon/Services/Crm/Hubsooti© HandleHubspotRateLimit.php app/Jobs/Middleware© HubspotClientinterface.php app/Services/Crm/Hubspot© HubspotPaginationService.php app/Services/Crm/Hubspot/Pagination@ JiminnyDebugCommand.php app/Console/Commandsphp logging.php config© MatchActivityCrmData.php app/Jobs/Crm© MatchCrmData.php app/Jobs/Activity/Import© PaginationState.php app/Services/Crm/Hubspot/Pagination© RateLimitException.php app/Exceptions© Service.php app/Services/Crm/HubspotUnversioned Files 9 files* dthrows Badrequestreturn Sresponse->getStatusCode === 401:Check for Guzzle HTTP excentionsif (Se instanceof \GuzzleHtto\Exception\CLientException) {return Se->aetCode0 === 4015= env.nikilocal apoE.env.other app©) CanAccessAiReportsTest.php tests/Unit/Policies• CreateMockAskJiminnvReportResultCommand.php app/Console/Commands/Re// Fallback to string matching as last resort, but be more specifioSmecsanp = stntolowen(Se->aetMeççaae0)•ki tavicon.ico publicE ids txt apriaraw sol querv sall aool© SimulateWebhooksCommand.php app/Console/Commands/Crm/Hubspotneturn stn contains Smessade.'401 unauthorized') ||stn contains Smecsade'http 401') 11str_contains($message, "status code 401') |1(preg_match('/\b401\b/', $message) && str_contains(Smessage, 'unauthorized'));olner Code will hoin INF to underctand vour Laravel ann code II Generate II Don't Show Anvmore (18 minutes aao)1 Daily - Platform • in 19 m100% Lz• • Mon 11 May 9:26:05AskJiminnyReportActivityServiceTestv+0 ..=laravel.logA SF (jiminny@localhost]4 HS_local (jiminny@localhost]# console [PKob.A console [EU]A console [STAGING]accept-encoding"],"access-control-allow-credentials":["false"]."server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\",cfr;desc=|"9f80deb8e7c6dc3a-IAD\""],"x-content-type-options": ["nosniff"],MMi9.У"x-nuospoc-correlacion-1d.l "0ryeuzd0-or0o-/812-p0ba-ooob/ccbseesr"ser-Lookle:ct.dm=sLurcaugxvrzksopacronzvyknzinubzavrabeccmoy-1//81050/5-1.0.207-May-26 14:51:15 GMT: domain=.hubapi.com: Http0nly: Secure: SameSite=None"],"керогс-10":"1endpolnts""url":nccos:a.nel.cloudtlare.comredorcv4?s=NYALsVIPorymszorsunxy24S0zk"max_age\":6048005"J,"NEL":["{"success fraction":0.01."max ade".604800-""Serven"•["cloudflare"]}} {"correlation_id":"95236535-ec98-4541-b92a-adfa73b69eab","trace id":"c7ab8365-903f-46d4-9403-0e5b551e3545"}CascadeHubspot Rate Limit Re9. Matchcrmbata rate limiter move is logically correct but asymmetric with the quardMatchCrmData.oho:103-1131SrateLimiter->canMakeRequest (Sactivitv->oetcrmo))4$this->release(...)return;ScrmObjects = $crm0bjectsResolver->resolveFromCall(...):SrateLimiter→>incrementRequestCount(Sactivity->getCrm0));Movina increnent:RequestCount to after resolveFromCall is correct — previouslv it counted the attemot even if the call failed. However. resolveFronCall canmake multiple CRM API calls (email match + phone match + domain match). The rate limiter counts this whole resolver as 1 request. If a preventive rate limiter wereadded inside Client, the ProviderRateLimiter at the job level would count "1 request" while the client made 3 calls - so the two counters would diverge and thepreventive limiter would still be meaninaful independentlv.Rate Limit counter Interaction — vatchcrnbata vs Cllent-Side Preventive LimitThe question about how the ProviderRateLimiter would interact with a preventive client-side rate limit:Current flow MatchtmData:1. canMakeRequestlo checks the Laravel cache-oased counter + 1ob-level, coarse-arained, oer-cRM-contic2. resolveFromCall() makes 2-3 actual HubSpot API calls3. incrementR.If a preventive rate limit were added in Client (e.g. before search()):Ask anything (&AL)+ <> CodeSAdaptive11 differencesCurront vorcion* dchrows Badrequestreturn sresponse->qetstatuscode0 === 4015Smessage = strtolower(Se->aetMessage0)sreturn str contains(Smessage."401 unauthorized')str contains(Smessage.'htto 401') 11stn contains (Smessade.Istatus code 401')(onea match(i/\b401\h/1. Smescage) ea= 1 cc str contains(Smeccage. 'unauthonized!))•* Validates and refreshes the access token if needed before API requests.ts aetAccociationchatals 20mAl}, $toAssociations):Po 4 spaces...
|
15185
|
NULL
|
NULL
|
NULL
|
|
15227
|
680
|
6
|
2026-05-11T06:29:48.007879+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778480988007_m1.jpg...
|
PhpStorm
|
faVsco.js – Hubspot/Service.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
idle
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
iTerm2•00ShellEditViewSessionScriptsProfilesWindowHelpDEV (docker)DOCKERO 81DEV (docker)882APP (-zsh)• *з.masterJY-20818-move-AJ-reports-to-separated-datadog-metricJY-20773-fix-automated-reports-user-pilot-trackingJY-20157-AJ-report-not-send-notificationJY-20508-notify-before-AJ-report-expirationJY-20372-ai-reports-promotion-pagesJY-20352-sync-opportunities-without-a-local-owner-user-id-is-nullJY-20738-debug-AJ-tracking-UPJY-18909-automated-reports-ask-jiminnyJY-20692-fix-integration-app-[API_KEY] laysJY-20698-fix-SF-activity-types-on-new-playbookJY-20543-AJ-report-trackingJY-20384-handle-auto-sync-with-no-access-to-event-typeJY-20458-ask-Jiminny-user-definitionsJY-19666-fix-import-contacts-account-associationJY-19666-HS-import-contacts-and-accounts-batch-jobJY-20458-Ask-Jiminny-ReportsJY-20200-batch-update-CRM-objects-SalesforceJY-19666-HS-webhooks-add-contact-and-companyJY-20348-trigger-setup-DI-layout-on-team-creationJY-20326-refactor-info-message-in-commandJY-20317-fix-auto-log-delay-issue-on-all-channels-disabledJY-20312-remove-on-update-change-last-synced-at-crm-configurationsJY-20306-SF-skip-auto-sync-for-task-based-playbookJY-20192-remove-deleted-team-from-saved-search-filtersJY-20197-import-opportunity-batch-jobJY-20293-enable-status-field-for-pipedrive-dealsJY-20191-remove-commands-interactive-promptsJY-20118-change-default-sync-strategyJY-20183-add-cache-on-auto-log-delayJY-20197-add-import-opportunity-batch-job20118-hs-opportunity-make-webhook-strategy-defaultJY-20118-make-default-hs-opportunity-sync-strategy-webhook-basedJY-20196-handle-opportunity-without-noteJY-20118-improve-opportunity-importJY-20189-handle-activity-search-on-deleted-groupsJY-20160JY-20145-filter-out-converted-leads-when-matchingJY-20150-skip-push-summary-on-summary-ready-1f-autologJY-20132-fix-note-encodingJY-19792-clean-logslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ devroot@docker_lamp_1:/home/jiminny# ]lablDaily - Platform - in 16 mA100% C47 8• Mon 11 May 9:29:47181-zsh-zsh885screenpipe"0 ₴6DEV...
|
15226
|
NULL
|
NULL
|
NULL
|
|
15437
|
689
|
14
|
2026-05-11T06:50:09.839937+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778482209839_m2.jpg...
|
PhpStorm
|
faVsco.js – Client.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8081782,"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":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"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 'AskJiminnyReportActivityServiceTest'","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 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
PhostormVIewINavicareCodeFV faVsco.js°9 JY-20725-handle-HS-search-rate-limroledey© BatchSyncCollectolyhuospotsyncstrategybase.ongCachedcrmservicebecorator.onp© ProspectCache.phpe balchsynckealsseС Cпескапокetrукemotematch.ongccloseaDealstagess @ MatchacuivitycrmData.ong© ermactivilyservice.phgDealrielasservice.gc)Decorateacuivilv.or© FieldDefinitions.phrclass Cllent extends Baseclient 1mpLements Hubspotcllentintertace- A2 A65 X1X1 ~C) FieldT vpeconvertee Hubspotclientinterc) Hubspotlokenman© PayloadBuilder.phpC) RemotecrmobiectP ResponseNormalizec) Service.onoC)SvncFieldAction.onC) SvncRelatedActivitC) WebhookSvncBatclv MintearationAorM Acceccors• D ConfigD DTO• M SiltersJobs• M ProcnectSoarchStr.W service lralts© DataClient.php© DecorateActivity.phcLocalsearch.oneu LocalSearchintertac© RemoteSearch.phpc) Service.phpv W Listeners© ConvertLeadActivitc) PurceLookuocache> M Metadata> Miarationa Pioedrivev Salesforce• D Fields• M OnnortunitvMatcheMOnnortunitvSvneSt897 (M ProsneetSearchStr.M ServiceTraitcC) Client nhr© DecorateActivity.ph. Delete@biectsTrait© FieldDefinitions.php© PayloadBuilder.php© Profile.php© QueryBuilder.phpououc tunction 1sunauthorizedzxcentionExcentionse: 000ureturn str contains(Smessage. "401 unauthorized')Istr contains(Smessage..'http 401') |1str_contains(Smessage, 'status code 401') |(orea match( pattern: • /\b401\b/' Smessage) &s str contains(Smessage, 'unauthorized')):* Validates and refreshes the access token if needed before API requests.* This ensures long-running processes don't fail due to token expiration.* @throws SocialAccountTokenInvalidExceptiony usagespublic function ensureValidToken: voidif (Sthis->oauthAccount === null) {Snewloken = sthis->tokenmanaqer->ensureval1dloken(sth1s->oauthaccountrif (SnewToken !== null) {sthis-›accessloken = snewloken:public function getConfigoreturn Sthis->confia:returns onlv active (archived=false)9 usadespublic function get0wners: arrayreturn $this->getNewInstance()->crm()->owners()->getALL();* apanam bool Sarchived* dretum arrau<ownens/r71s usages40 hlDally - Platrorm • now100% 4 • Mon 11 May 9:50:09U AskJiminnyReportActivityServiceTest v+0 ..11 1l1III=custom.log ^=laravel.logA SF (jiminny@localhost]4 HS_local [jiminny@localhost]# console [PKob.# console [euJ# console [slAGiNG)[2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {w19 .V"neaders".?"Uace":L"Inu,or May 2020 14.21.15 6Ml"Jn"Transter-Encod1nq":"chunked")."Connection":"keep-alive""CF-Ray" : ["9f80deb8db60dc3a-SOF"],"Strict-Transport-Secur1ty":"max-aqe=31536008* 1ncludeSubDomains: preload")naccent-encodino""access-control-allow-credentials": ["false"]."server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-hubspot-correlation-id":["019e02d0-6fd8-7812-bdba-885b7ccb3ee3"],"So+-Cookie"." c+hm-Stlirtd0aXVr.kSandas6hzVVKhzTn0BidvMaheCtm0V-1778163675-1.0.107-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"],"Renont-To"."","endpoints\":[{"unl".httns:a.nel.cloudflane.com./nenon+|W/v42c=NVA1cVTPQfVm32anS0ixVF/sd2RI\"group)":\"cf-nel\","max_age\":604800}"],"NEL":["{\"success_fraction\":0.01,reportto. "cr-nel,"max age":604800}"]"Server": ["cloudflare"]}} {"correlation_1d":"95256555-ec98-4541-b9za-adta/Sb6Yeab","trace_10":"C/AD8565-905t-4604-9405-0e50551e5545I IIllC;CascadeHubspot Rate Limit Reif (Sretry) {sleenab:return $this->searchCallsForPeriodByPage($from, $to, $page, false);return null;Why this is now broken/suboptimal with the new client1. Covehes Encef lint Couk Be 1,0, o.) l tecuro d: we aiays sCcep ion that The now clioni carefly consirveted win rety after fiom headers in2. For tng te eage a mpy. The mont cen meon tweslor notsea th lil oer eit o - en oat , t aoi, od in trniscont aloe atry andtee siently3. The Sretry = false recursive flaa is fragile. Once we pass retrvefalse. on the second 429 we just return null without distinguishing rate limit from reaSuggestionCatch Ratel imitFycention cnecificallv and uco detRetrvifterd.D phppublic function searchCallsForPeriodByPage(Carbon strom, Carbon sto, int Spage, int sretries = 2)trydSpay Load = Sthis->payLoadbu1lder->generatesearchcaulsByPer1odPayLoad(Strom, Sto, Spage);return sthis->client->search'cals". Soavload):} catch (RateLimitException $e) {throw se: // hubble un: caller decidec whether to fail the imnort or releace the iohlsleen min Se->aetRetrvAftero, 30)):return $this->searchCallsForPeriodByPage($from, $to, $page, $retries - 1);} catch (Exception Sexception) {$this->logger->info('(HubSpot) Search calls for period failed', (...]);recurh nuet;only swallow non-rate-limit Tallures as beroreEven better — if searchCallsForPeriod is called from a queued job (which it typically is for backfills), don't swallow at all. Let RateLimitException bubble to thejob middleware (HandleHubspotRateLimit), which already handles release-with-delay properly. The in-process sleep() wastes a worker for up to 30s and ties upHorizon throughput.Let me check if it's job-driven:Coorchod caorsbColleGorDorindlrdingURLToken in app (.php) (5)Both callers are backaround workflows (a Console command and an internal service). So letting RateLimitException bubble to the iob middleware is the cleanestanswer - drop the sleep(1) retry path entirely and rely on HandleHubspotRateLimit:: release(Sdelay)TL:DR for #2: the sleep(1) predates the new structured exception. Either:• Catch RateLimitException and use getRetryAfter() (replace blind sleep(1) ), orLet it bubble to the job middleware and delete the in-process retry - preferred3. Whv matchExactlvBvEmail() Has No Rate Limit HandlinaCalle(erch d lstorPero itnypase/secrchdll forpernod /searchCalt9 eo adinguiLroten) it.on onyi6e handit 62-198 wil remove it from find and otherWN Windsurf Teams802•6UTF.RPo 4 spaces...
|
15433
|
NULL
|
NULL
|
NULL
|
|
15466
|
688
|
53
|
2026-05-11T06:52:19.199475+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778482339199_m1.jpg...
|
PhpStorm
|
faVsco.js – Client.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
visual_change
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
+FirefoxEditDaily - Platform - now100% L28• Mon 11 May 9:52:18$FileViewHistoryBookmarksProfilesToolsWindowHelpmeet.google.com/mie-gawc-dsi?authuser=[EMAIL] Yankov (Presenting)*0.8• Mon 11 May 9:52C Jy 204yServ83 Jmier8 PromoO Attent0 Calls -Ca TranspJmine* MCPI• эppібкhttps://fiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedissue=JY-206254 55H8E Datadog* Claude3 CircleCi|Sentry*xIL tasкInsights & Coachin…0 DerL Al BockmarxsPlatform Team %Q Search board§ sY-20739 / Q JY-20625Group: Queries[POC)Jiminny MCP ConnectorIn ProgressIx Improve SpikeAJ Panorama for CallScoring nn 0o(AUTOMATED AT SCOREKeddytorDUV( Jy-20301Setup test coverage forProonoricharMAINTENANCEBacklogE 3-10951~ DescriptionCustomers are starting to use AI tool (like Claude and GPT) to connect the information from all f their platform into oneplace. Which they then use to interrogate and perform different analysis on their data. We want to create a Jiminny MCPwhich will enable them to connect their Jiminny data to Claude/GPT.• create a POC to demonstrate the approach• determine form where the data needs to be fetched - long term we want to fetch everything from Elastic Search but inorder to release it faster we can consider a temporary mixed approach with the DBAI Reports > Empty pageDetailsdesign and promotonAJREPORTSAssigneeDeployed• Nikolay Nkolow20572 11 0000 =Assign to meJrOK Và ALUICReporter& Galya Dimitrova• Gctermine what te aucrcriacauon necos to d0 lxcep in mio teourementeand /nthe epproseranongo snourd de contrmed wan surtkd ane uaya• product requirements - E Jiminny MCP ConnectorDevelopmentQ Open with VS CodeJ Create branch61 commits1 pull request1 build incomplete-20728 1 • •***=4 days agoorthAllow users to delete SSand Panorama promptswhen those are used in a...AJREPORTSDeployedComponentsPlatform••+33% DoneRelease AJ PanoramaWOTKPriortyASSIOusSub-ProductAdd optionsAJREPORTSDeployedR-20740 05 1) ..0•=ouyu/s. Ciedeyoe= м.ON...INDEV -Labels%JY-20743toois/listResearch Competitor's MCP= M.- N...story pont estmasummary in the CRM•f•Nikolay YankovStefka Stoyanova=Galya Dimitrova4 others9:52 AM | Daily - Platform...Lukas Kovalik3:52...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
16286
|
731
|
7
|
2026-05-11T08:36:55.903370+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778488615903_m2.jpg...
|
PhpStorm
|
faVsco.js – Client.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8081782,"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":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"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 'AskJiminnyReportActivityServiceTest'","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 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
PhostormVIewINavicareCodeLaravelKeractorTOOISWindowmelpFV faVsco.js?9 JY-20725-handle-HS-search-rate-limitroledey© HubspotPaginationService.phpC. ActivitvProviderClientyhuospotsyncstrategybase.ongy syneermenttes tralt.onpCachedcrmservicebecorator.ong© ActivityProviderRegist© ActivityProviderServic© CallDenormalizerRegis© CrmOwnerResolver.ph© DatalmportHandlerinte© MeetingBotService.ph© ParticipantConsentSer© ParticipantsService.phT ResponseValidationTreT SalesforceGetUserTrai(© SfDenormaliserMainCr© TrackRecordingFileSizT DeleteCrmEntityTrait.php© MatchactivityermData.php© Job.php*RateLimitexception.pr) PaqinationContia.phgclass PaginationStatec) Trackkecoroingsizeen(© ValidateEmitProspectE <oAlReportsD Avatarw Calendaral ermM Bullhornm CloseCoobenN CrmObiects• DecorateActivitym DummiHelpersv M HubsnotAccountSuncStrate• D Actions• ContactSyncStrate!DDIe› D FieldsM.lourna0 Metadatav @ OpportunitySyncSti> 0 Concerns© HubspotLastMo(c) HubspotLastmoi© HubspotLastMorc) =uosootLastMo© HubspotLastMor 7(C) HubspotSinales€ HubspotSvncStr(C) HubsnotWebhocv M Padination© HubspotPaginati 82@ DaginationGonfic) DacinationState> M ProcnectSearchStr.> M Redicpublic functio,construct(public float $startTime = 0.0,public int $total = 0public int $offset = 01..3public function incrementRequestCount: void{...}s usagespublic function incrementTotalRecords: void{...h3 usagespublic function updateLastTokenCheck: voidi...}public function setTotal(int $total): voidi...}public function updateLastRecordId(?string SlastRecordId): void{...}public function setoffset(int Soffset): void{...}oublic function shouldLoaProqressio: 000lreturn Sthis->requestCount > 0 ∞x Sthis->requestCount % PaginationConfia:: PAGINATION LOG FREQUENCY === 0public function hasReachedSafetyLimit: boolf...hpublic function shouldValidateToken: boolf...}public function getElapsedSeconds: float{...}lelner Code will hoin INF to underctand vour Laravel ann code II Generate II Don't Show Anvmore (todav Q•08)• suppont Dally • In 3h 24m100% 47. • Mon 11 May 11:36:55AskJiminnyReportActivityServiceTestvDO :+0 ..A SF (jiminny@localhost]4 HS_local (jiminny@localhost]# console [PKOb.# console leu)# console [slAGiNg)2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"Vace". "Inu,ur May 2020 14.21.19 6Ml"Jn"concenc-lyoe. apolicacion/ison.charser=utt-on"Transfer-Encoding": ["chunked"]."CF-Ray":"9t80deb8dbo0dcsa-S0F"J,"CF-Cache-Status": L"DYNAMIC"J,"Strict-Transport-Secur1ty":"max-aqe=31536000* 1ncludeSubDomains: preload")"access-control-allow-credentials": "false"."server-timing": ["hcid;desc=|"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\",cfr;desc=|"9f80deb8e7c6dc3a-IAD\""],"x-content-tvoe-ootions":"nosniff"."x-hubsoot-correlation-id":"019e02d0-6fd8-7812-bdba-885b7ccb3ee3"]"Set-Cookip"." c+hm=Stlirtd0aXVr.kSandas6hzVVKhzTn0BidvMaheCtm0V-1778163675-1.0.107-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"],"Renont-To".f"s"endnoints".("url\":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RV("group\":\"cf-nel\".("max_age\":604800}"],"NEL"L"1"success_fraction\":0.01,"reportco. "cr-nel"max agel ":604800}"].'Server": ["cloudflare"]}} {"correlation_1d":"95256555-ec98-4541-b9za-adta/Sboyeab","trace_10":"C/AD8565-905t-4604-9405-0e5b551e5545CascadeHubspot Rate Limit ReWhat chanaed and what didn'tImproved dramatically• HubSpot API quota burned: 441k → 11k. No risk of escalation to TEN SECONDLY ROLLING or DAILY LIMIT• Loa volume: 882k → 10k entries. Observability pioeline survives.• DB transaction churn: 245/s → ~50-100/s. ~3x reduction.• Worker CPU Redis load: vastly reduced (no APl HTTP overhead in 95% of cvcles).• Other queue jobs: still starved, but workers loop faster, so more cycles available - somewhat better.•DAILY LIMIT scenario: now fails immediately via siob->fail() instead of looping for 30 minStill bad (unchanged)•91% iob failure rate after 30 min. The fundamental bottleneck is HubSpot's 5 RPS + 30-min retrvlnt il. With 100k iobs throuch 5/s. vou need >5 hours• Activities end un in oridinal (ore-match) state, since failledo onlv loasWhat would still help (next steps, if relevant)1. Dispatch-side throttling: don't dispatch all 100k at once. The math hard-caps you at 5/s x seconds-in-window. Either pace the dispatcher (e.g. drip 4/s intoqueue) or use a single batch processor that honors the rate limit naturally,2. Bump RETRY_WINDOW_MINUTES : 30 min is way too short for 100k jobs at 5 RPS. To absorb the whole batch you need ~6 hours. But long-held unique locks aretheir own concern,3. Backtill via batch endpoints: HubSpot has batch read endpoints (100 |Ds per call) for contacts/companies/deals. They count as 1 call against the rate limitКОСТВСТЕСIООЕТИТСИКУNАМОТБE ВАРЬОЛОВTОTОRTCEEOCON/OEОEIAEIОВVATOACIAETEЛAEAIIECОNPRTOTEACО1IOSummaryImplemented• RateLimitException carries policy, exposes 1sDa1lyLimito v RateLimitException.php:9-33• Client:: executeRequest now has a per-portal Redis cache circuit-breaker: populates from real responses & Client.oho:76-119•Client::parsePolicy extracted: policy passed to exception v Client.php:166-184• Middleware fails fast on DATLY LIMIT• droos MAX RATE LIMIT ATTEMPTS • raised MIN RETRY DELAY to 5s with litter samoled loaaina V Handl eHubsootRatelimit.php:14-53• MatchActivityCrmData uses RETRY_WINDOW _MINUTES constant; skips stack-trace log for RateLimitException v MatchActivityCrmData.php: 32-78Not changed (per-portal redis cache replaces it): the DB rate limits table dependency. The new flow doesn't read from it. Existing ProviderRateLimiter usagein non-HubSoot code oaths (Salesforce, etc.) is untouched.Mot roenlt for tho 100k coonorin.• ~98% reduction in wasted HubSpot API calls• V ~99% reduction in loa volume• • DAILY LIMIT now triggers immediate fail (no 30-min loop)• • No more thunderina herd•/ 010 inh failuro rato ic unchanaod - fundamontallu a dicnatch-rato / rotrvlinti1 micmatch arahlom not a rato-limit-handlina nrohlom4 files +91-33)Accent alliCh 1 00 0. F vie con one wintai miake alo o o K Ve e i fatet So rit ik Che hol Gatly policy, Pory ot wc naid t ssmf to the - xopi0n)W Windsurf Toams 60-28 (17 charc) UTF.8io 4 spaces...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
16419
|
737
|
2
|
2026-05-11T08:50:23.921278+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778489423921_m2.jpg...
|
PhpStorm
|
faVsco.js – HandleHubspotRateLimit.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8081782,"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":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"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 'AskJiminnyReportActivityServiceTest'","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 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
PhostormViewINavicareCodeFV faVsco.js°9 JY-20725-handle-HS-search-rate-linProiect© SyncRelatedActivityManager.php© TeardownStream.php• AiAutomationAjReports> D AudioAutomatedReports© RequestGenerateAskJi© RequestGenerateRepo© SendReportExpiringSo© SendReportJob.php© SendReportMailJob.ph© SendReportNotGenera> [ Calendar0 Crmv _ Delere© DeleteAccount.Job.l© HubspotSyncStrategyBase.phpCachedcrmservicebecorator.onp© ProspectCache.php© MatchActivityCrmData.php*RateLimitexception.php© HandleHubspotRateLimit.php xC) PaqinationConfia.php* Job middleware that catches RateLimitException from HubSpot API calls* and releases the job back to the queue with the appropriate delay2 usagesclace HandloHuheno+Patel imitC) DeleteContact.Job.rTDeleteCrmEntitviraC) DeleteleadJob.ohr© DeleteOpportunityC) VeritvActivitvermirm Hubsoot• M Salesforce© AutologDelayedToCrm 20© CheckAndRetryRemoti 21© CreateFollowupActivit: 22(c) CroateNotec nhnl© MatchActivitiesToNew 24(C) MatchA ctivitvCrmDate(e [EMAIL]© saveAcuivity.onp© SaveTranscription.php© SetupLayout.php© SyncActivity.php© SyncFieldMetadata.ph© SyncHubspotObiects.r© SyncLeads.php© SyncObjects.php© SyncOpportunities.Job© SyncOpportunitv.phr© SyncProfileMetadata.rprivate const int MAX RETRY DELAY = 600:private const Int MIN KEIKY UELAY = 11private const int MAX_RATE_LIMIT_ATTEMPTS = 20;Renect1 usageprivate const int JITTER SECONDS = 5:nublic function handlecobiect Siob. callable Snext): voidtry {Snext(Siob):} catch (RateLimitException $e) {if (Siob->attemots() >= self::MAX RATE LIMIT ATTEMPTS) {Rate limit attemot limit reached. giving up'. [Inate limit meccade!=> $e->getMessageO,D:throw se:$delay = max( value: self::MIN_RETRY_DELAY, min($e->getRetryAfterO$delay += random_int(0, self::JITTER_SECONDS)...values: self::MAX_RETRY_DELAY)):SretrvAften = Se->aetRetrvAfterolCdolav = mayicolf:*MTN PETPV NCIAV minCnotnviften colf.•MAY RETRY NELAVDEc) Svncireampields.00.ol© SvncTeamMetadata.of(C) Uodate@ooortunitvSoN DealRisksLog::info('[HandleHubspotRateLimit] Rate limit caught, releasing job with delay'. ["nodclass=5100:.class.'attemots' => S1ob->attemotsol=> SretrvAfter.= Sdelav.Inate 1imit messadel => Se->ae+MecsadeOriM Meetina3o1M Middleward• Landle-ubsnotPatelin(C) Patel imited nhn> M StreaminalSattemots = Siob->attemotso:if (Sattemots <= 3 |I Sattemots % 10 === 0) $Log:: infof message: HIHAcceptFlle za tel iReiect riatseLimit caughtrergleasing job with delay'. I'oh class' => Siooumassi=custom.log~A SF (jiminny@localhost]4 HS_local (jiminny@localhost]# console [PKob.# console leu)# console [slAGiNg)2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {headers'1"Vace". "Inu,ur May 2020 14.21.19 6Ml"Jn"concenc-lyoe. apolicacion/ison.charser=utt-on"Transfer-Encoding": ["chunked"]."CF-Ray":"9t80deb8dbo0dcsa-SOF","CF-Cache-Status": L"DYNAMIC"J,"Strict-Transport-Secur1ty":"max-aqe=31536000* 1ncludeSUbDomains: preload"),acceot-encodino"."access-control-allow-credentials": "false"i."server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\",cfr;desc=|"9f80deb8e7c6dc3a-IAD\""],"x-content-tvoe-ootions":"nosniff"."x-hubspot-correlation-id":["019e02d0-6fd8-7812-bdba-885b7ccb3ee3"],"Set-Cookip"." c+hm-Stlirtd0aXVr.kSandas6hzVVKhzTn0BidvMaheCtm0V-1778163675-1.0.107-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"],"Renont-To".f"s"endnoints".("url\":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RW|("group\":\"cf-nel\".("max_age\":604800}"],"NEL":["{"success_fraction\":0.01,reportto. "cr-nel,"max agel ":604800}"].'Server":["cloudflare"]}} {"correlation_1d":"95256555-ec98-4541-b9za-adta/Sboyeab","trace_10":"C/AD8565-905t-4604-9405-0e5b551e5545suppont Dally • In sn 10m100% 2• Mon 11 May 11:50:23AskJiminnyReportActivityServiceTest -CascadeHubspot Rate Limit Re+0 ..ReasonRateLimitException.phpRemoved policy field & methodsMiddleware doesn't need it: cache TTL handles DAILY naturallycache stores scalar int retry after) instead of arraySimpler: no policy to trackDrop policy from RateL1m1tException constructorMatch new exception signature; still log policy for observabilityRemoved DAILY LIMIT branchretryUntil + long cache TTL handle it; saves complexityMIN RETRY DELAY 5→1Named JITTER SECONDS constantSelf-documentingCollapsed dual catch into single catch + instanceofMore readable; no awkward empty rethrow blockHow DAILY LIMIT now flows (no special case needed)1. HubSpot returns 429 with policyName: DAILY_LIMIT2. parseRetryAtter sees no Retry-After header, falls through to policy table → returns 600s (the DAILY_LIMIT detault lleft in parseRetryAfter)3. Cache populated with TTL=600 (10 min)4. All subsequent requests fast-fail via cache for 10 min - no API calls5. Middleware releases iohs with delav 1-6c (chean evcles. all hit cache)6. After 30 min, retryUntil expires → jobs permanent-fail naturally7. No special branch. no siob→>failo, no excention fieldThe system converges to the same outcome with less code.Re-running the 100k scenario (delta from previous run)Material chandes vs the previous version:• Job retry cycle is faster (delay 1-6s instead of 5-10s) → ~2x more queue cycles per second per worker• More cache hits per second (since cycles are faster) - but cache GETs are cheap (~0.1ms)• Same throughout ceilina (5 successful calls/s — HubSoot's limit)• Same final outcome (29k succeed 201k fail at T-20min)MetricSuccessful jobs in 30minPrevious (this round)This round9,000Wasted HubSpot API calls~10,800Job pop cycles/sec~50-1009,000~10,800~100-250|Log entries (with sampling)0000.~10.000Averade delav ner releace275gThe faster retry cycle gives you slightly better responsiveness when the cache window expires (more "lottery tickets" at HubSpot's open second), but doesn'tThe fundamental remaining issue is unchanged: 30 min x 5 RPS = 9k jobs ceiling. To process all 100k, you either need ~6 hours window, or batch-endpointredecian. or disnatch-side throttlingG al ... (2 files with chanaesann/lohe/Crm/MMatchActivitvCrmData.nhn 412-8View allapp/Jobs/Middleware/ HandleHubspotRateLimit.php +12 -20ot/m Client.oholReiect allAccent alliOk explain $delay += random int(0, self«JITTER SECONDS): It also seems that before the and then lets run the scenario again.Claude Onus 4.7 MediumW Windsurf Toams 26-12 (46 charc)UTE.8io 4 spaces...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
16551
|
740
|
30
|
2026-05-11T09:03:59.580243+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778490239580_m1.jpg...
|
PhpStorm
|
faVsco.js – Client.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
SlackFileEditViewGoHistoryWindowHelpDOCKERO 81DEV (docker)882DEV (d)APP (-zsh)• xзmasterJY-20818-move-AJ-reports-to-separated-datadog-metricJY-20773-fix-automated-reports-user-pilot-trackingJY-20157-AJ-report-not-send-notificationJY-20508-notify-before-AJ-report-expirationJY-20372-ai-reports-promotion-pagesJY-20352-sync-opportunities-without-a-local-owner-user-id-is-nullJY-20738-debug-AJ-tracking-UPJY-18909-automated-reports-ask-jiminnyJY-20692-fix-integration-app-[API_KEY] laysJY-20698-fix-SF-activity-types-on-new-playbookJY-20543-AJ-report-trackingJY-20384-handle-auto-sync-with-no-access-to-event-typeJY-20458-ask-Jiminny-user-definitionsJY-19666-fix-import-contacts-account-associationJY-19666-HS-import-contacts-and-accounts-batch-jobJY-20458-Ask-Jiminny-ReportsJY-20200-batch-update-CRM-objects-SalesforceJY-19666-HS-webhooks-add-contact-and-companyJY-20348-trigger-setup-DI-layout-on-team-creationJY-20326-refactor-info-message-in-commandJY-20317-fix-auto-log-delay-issue-on-all-channels-disabledJY-20312-remove-on-update-change-last-synced-at-crm-configurationsJY-20306-SF-skip-auto-sync-for-task-based-playbookJY-20192-remove-deleted-team-from-saved-search-filtersJY-20197-import-opportunity-batch-jobJY-20293-enable-status-field-for-pipedrive-dealsJY-20191-remove-commands-interactive-promptsJY-20118-change-default-sync-strategyJY-20183-add-cache-on-auto-log-delayJY-20197-add-import-opportunity-batch-job20118-hs-opportunity-make-webhook-strategy-defaultJY-20118-make-default-hs-opportunity-sync-strategy-webhook-basedJY-20196-handle-opportunity-without-noteJY-20118-improve-opportunity-importJY-20189-handle-activity-search-on-deleted-groupsJY-20145-filter-out-converted-leads-when-matchingJY-20150-skip-push-summary-on-summary-ready-1f-autologJY-20132-fix-note-encodingJY-19792-clean-logslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-Lirroot@docker_lamp_1:/home/jiminny# ]HomeDMsActivityFilesLater..•More(aol§ Support Daily - in 2h 57 m100% C8• Mon 11 May 12:03:59ED→Describe what you are looking forJiminny ...crsmecruus# general# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of_jimi...0 Direct messagesa. Stefka Stoyanova€. Vasil Vasilevo Nikolay Ivanov. Galya DimitrovaAneliya Angelova, .... Stoyan TanevVes®. Aneliya Angelova& James GrahamE Lukas Kovalik y…..:: AppsJira CloudLToastGoogle Cale...Stefka Stoyanova• Messages7 Untitled+C Files7 Untitledluesaay, April 28th ~Today ~Stefka Stoyanova 10:08 AMЛукаш, щом пре-рефайнмънта и рефайнмънтаще са само за МСР ако искаш не идвай да сигубиш времетоLukas Kovalik 10:12 AMда, няма да идвамStefka Stoyanova 11:35 AMЛукаш, ще сложиш ли естимейт наhttps://jiminny.atlassian.net/browse/JY-20818Jira Cloud -Move Ask Jiminny reports to separate...Bug JY-20818 in Jira CloudStatusDeployedPriority= MediumAssigneeLukas Koval...As of today at 11:35 AMOpen in Jira* SummariseMessage Stefka Stoyanova......
|
16549
|
NULL
|
NULL
|
NULL
|
|
16598
|
742
|
20
|
2026-05-11T09:10:08.367099+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778490608367_m1.jpg...
|
PhpStorm
|
faVsco.js – Client.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
SlackFile Edit ViewGoHistoryWindowHelp000DOCKER₴1DEV (docker)882DEV (d)APP (-zsh)• xзmasterJY-20818-move-AJ-reports-to-separated-datadog-metricJY-20773-fix-automated-reports-user-pilot-trackingJY-20157-AJ-report-not-send-notificationJY-20508-notify-before-AJ-report-expirationJY-20372-ai-reports-promotion-pagesJY-20352-sync-opportunities-without-a-local-owner-user-id-is-nullJY-20738-debug-AJ-tracking-UPJY-18909-automated-reports-ask-jiminnyJY-20692-fix-integration-app-[API_KEY]@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-Lirroot@docker_lamp_1:/home/jiminny# ]HomeDMsActivityFilesLater..•More(aolSupport Daily • in 2 h 50 ml100% C8• Mon 11 May 12:10:07ED→Describe what you are looking forJiminny ...crsmecruus# general# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of_jimi...0 Direct messagesa. Stefka Stoyanova€. Vasil Vasilevo Nikolay Ivanov. Galya DimitrovaAneliya Angelova, .... Stoyan TanevVes®. Aneliya Angelova& James GrahamE Lukas Kovalik y...:: AppsJira CloudLToastGoogle Cale...Stefka Stoyanova• Messages7 Untitled+C Files7 Untitledluesaay, April 28th ~Today ~Stefka Stoyanova 10:08 AMЛукаш, щом пре-рефайнмънта и рефайнмънтаще са само за МСР ако искаш не идвай да сигубиш времетоLukas Kovalik 10:12 AMда, няма да идвамStefka Stoyanova 11:35 AMЛукаш, ще сложиш ли естимейт наhttps://jiminny.atlassian.net/browse/JY-20818Jira Cloud -Move Ask Jiminny reports to separate...Bug JY-20818 in Jira CloudStatusDeployedPriority= MediumAssigneeLukas Koval...As of today at 11:35 AMOpen in Jira* SummariseMessage Stefka Stoyanova......
|
NULL
|
NULL
|
NULL
|
NULL
|
|
16599
|
743
|
21
|
2026-05-11T09:10:08.358634+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778490608358_m2.jpg...
|
PhpStorm
|
faVsco.js – Client.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.8081782,"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":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"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 'AskJiminnyReportActivityServiceTest'","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 'AskJiminnyReportActivityServiceTest'","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":"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}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
PhostormcodeFV faVsco.jsroledey© TrackRecordingFileSiz© ProspectCache.php© TrackRecordingSizeEnT. ValidateSmitProspect:AjReports© MatchacuivitycrmData.ong* RateLimitex0 Calendarn Conference(C) ProviderRateLimiter.phpC) PaqinationConfia.php0 Crmclass Cuient extends BasecLient imolements Hubspotcuientinterface@ bullnornJ close_copper>J Crmobiects_ DecorareAcuivily• DummyHelpersv h HubspotAccountSvncStrate> Actionsa ContactsvncStraterm Fields• Malournal1 Metadatalv OpportunitySyncSt• MConcerns.(c) Hubsnotl actMoC HubspotLastMo(C) Hubsnotl actMo(C) Hubsnotl actMo(C) Hubsnotl actMo© HubspotSingleSo UnhenotCunaCtr© HubspotWebhoov M Padination© HubspotPaginat© PaginationConfi(C) PaqinationState> D ProspectSearchStr:› D Redisv D ServiceTraitsTOnoortunitvsvnd() SvncCrmEntitiesT SuncFieldstirait.() WriteCrmTrait.ol 106• M UtilsM Webhook@ BatchSvncCollectol 1091101(c) RatchSvncRedisSerc) Client nhr(C) ClocedDea|StagocS 111@ Dea|FieldcService r 112* othrows RateLimitexceptzon1 usaaelorivate function executeReguest(callable SaoicalbiScachekev = Sthis->aetRateLimitCacheKevo:ScachedRetryAfter = Redis::get(ScacheKey):if (is_string($cachedRetryAfter) && is_numeric(ScachedRetryAfter)) {throw new RateLimitException('Hubspot rate limit (cached circuit-breaker)',int ScachedRetnvAftentryfrecurn sapllallor} catch (Throwable $e) {if (Sthis->isHubspotRateLimit(Se)) {sretryAtter = sth1s->parseretryAtterseRedis::setex(ScacheKev. SretrvAfter. (string) SretrvAfter):Sthis->loo->warnina(' Hubsoot Received 429 from APT"."confia id'= sthis->confio->aetido.policv= Sthis->oarsePoLicv(Se).= Se->aetMessadeOlthrow new RateLimitException( message: 'Hubspot returned 429', SretryAfter, $e);throw $e;1 usageprivate function getRateLimitCacheKey: stringreturn sprintf( format: 'hubspot:ratelimit:portal:%d'. Sthis->confiq->qetIdO):olner Code will hoin INF to underctand vour Laravel ann code II Generate II Don't Show Anvmore (todav Q•08)• suppont Dally • In 2n o0m100% Lz• Mon 11 May 12:10:07AskJiminnyReportActivityServiceTest v+0 ..CA2A6 X1X3A11111A SF (jiminny@localhost]4 HS_local (jiminny@localhost]# console [PKob.# console leu)# console [slAGiNg)2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"Vace". "Inu,ur May 2020 14.21.19 6Ml"Jn"concenc-lyoe. apolicacion/ison.charser=utt-on"Transfer-Encoding": ["chunked"]."CF-Ray":"9t80deb8dbo0dcsa-S0F"J,"Strict-Transport-Secur1ty":"max-aqe=31536000* 1ncludeSUbDomains: preload"),"access-control-allow-credentials": "false"."server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\",cfr;desc=|"9f80deb8e7c6dc3a-IAD\""],"x-content-tvoe-ootions":"nosniff"."x-hubspot-correlation-id":["019e02d0-6fd8-7812-bdba-885b7ccb3ee3"],"Set-Cookip"." c+hm=Stlirtd0aXVr.kSandas6hzVVKhzTn0BidvMaheCtm0V-1778163675-1.0.107-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"],"Report-To":["{("endpoints\":[{("url\":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RV("group\":\"cf-nel\".("max_age\":604800}"],"NEL"L"1"success_fraction\":0.01,reportto. "cr-nel,"max agel ":604800}"].'Server": ["cloudflare"]}} {"correlation_1d":"95256555-ec98-4541-b9za-adta/Sboyeab","trace_10":"C/AD8565-905t-4604-9405-0e5b551e5545-31CascadeHubspot Rate Limit Re$cachedRetryAfter = Redis::get($cacheKey);1 recurns string latse nuce1T (1s string(scachedRetryAtter) ox 1s numeric(scachedretryAtter)) ...Ked1s::setex(scacheney, srecryarter, (string) srecryarter);Single atomic Redis com.Kev implementation notes1. SETEX is atomic - sets the value and TTL in one round-trip. (put internally does this too, but adds prefix manipulation and serialization in PHP-land2. No prefix from Laravel cache confia. Your key in Redis will be exactiy hubspot:ratelimit:portal:42. not cache prefix:laravel cache:hubspot:ratelimit:portal:42 . Easier to inspect with redis-cli. Make sure no other code is using a key like that - unlikely with this namespace3. Return value handlingRedis::aet(Snonexistent) → returns null (Predis) or false (PhpRedis)• The is strina(sy) &c ic numeric(sy) quard handles both cases olus malformed values cleaniv.4. Connection: uses Laravel's default Redis connection ( config/database.php → redis.default ). If you want to isolate this from queue/cache traffic, use Redicaoconnection("rate limitel)_soet(...) after definina a senarate connection5. Type cast (string) on store: setex requires a string value. Without the cast, PhpRedis throws a TypeError on intCache::aet/putRedis::aet/setex1combined)PHP CPU per op~50-100us (CacheManager + serialize)~10-20us (direct Redis cmd)Network bytes (value)~10 bytes (1:1:)1byte ("1")Key lengths0 chars (with orefix)lalAhoreNealigible per-call, but at 1,500 cache GETS/sec (steady state from previous trace), the savinas add up: ~50ms CPU sec freed, plus simpler Redis monitorina.SummarvSentrv imnact for 100k storm:• ~91.000 events to Sentrv all arouned under MaxAttenntcFyceededFycent ion• Will hit sentry rate-limits: events aet aropped~10% of monthlv quota on a tvnical small olan.• Recommended fix: add RateLimitException (and optionally MaxAttemptsExceededException) to the dontReport array in app/Exceptions/Handler.phpRedis swao doneCache::aet /out → Redis::aet/setex• Direct atomic no cerialization overhead• Same loqical behavior. leaner imolementation• Kev visible as olain hubsoot: ratelimit:nortal-fidl in redis-c14l11 111 1Ok what will happen if there is 10 workers. Once the ratelimit is cought and cache set by one, what will happen it the oth stilll.+ « CodeClaude Onus 4.7 Medium.nl .io 4 spaces...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
16798
|
750
|
3
|
2026-05-11T09:27:41.927010+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778491661927_m1.jpg...
|
PhpStorm
|
faVsco.js – PlaybackController.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification...
|
[{"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-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","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":"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_expanded":false}]...
|
-9140679751598560133
|
-8132362818571490362
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
FinderFileEditViewGoWindowHelp<•00DEV (docker)DOCKERO ₴1DEV (docker)882APP (-zsh)|• жзmasterJY-20818-move-AJ-reports-to-separated-datadog-metricJY-20773-fix-automated-reports-user-pilot-trackingJY-20157-AJ-report-not-send-notificationJY-20508-notify-before-AJ-report-expirationJY-20372-ai-reports-promotion-pagesJY-20352-sync-opportunities-without-a-local-owner-user-id-is-nullJY-20738-debug-AJ-tracking-UPJY-18909-automated-reports-ask-jiminnyJY-20692-fix-integration-app-[API_KEY]@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ devroot@docker_lamp_1:/home/jiminny# ]• Support Daily • in 2h 33 m-zsh84-zsh885100% <78• Mon 11 May 12:27:41181screenpipe"0 ₴6DEV...
|
16783
|
NULL
|
NULL
|
NULL
|
|
18648
|
803
|
42
|
2026-05-11T11:37:54.957895+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778499474957_m2.jpg...
|
PhpStorm
|
faVsco.js – RateLimitException.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
<?php
declare(strict_types=1);
namespace Jiminny\Exceptions;
use Throwable;
class RateLimitException extends RuntimeException
{
public function __construct(
string $message = '',
private readonly int $retryAfter = 1,
?Throwable $previous = null,
) {
parent::__construct($message, 0, $previous);
}
public function getRetryAfter(): int
{
return max($this->retryAfter, 1);
}
}
Show Replace Field
Search History
429
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
23/38
Previous Occurrence
Next Occurrence...
|
[{"role":"AXButton","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-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.82413566,"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":"HandleHubspotRateLimitTest","depth":6,"bounds":{"left":0.8394282,"top":0.019952115,"width":0.076130316,"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 'HandleHubspotRateLimitTest'","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 'HandleHubspotRateLimitTest'","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":"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":"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":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Exceptions;\n\nuse Throwable;\n\nclass RateLimitException extends RuntimeException\n{\n public function __construct(\n string $message = '',\n private readonly int $retryAfter = 1,\n ?Throwable $previous = null,\n ) {\n parent::__construct($message, 0, $previous);\n }\n\n public function getRetryAfter(): int\n {\n return max($this->retryAfter, 1);\n }\n}","depth":4,"bounds":{"left":0.11968085,"top":0.1963288,"width":0.30585107,"height":0.52673584},"on_screen":true,"lines":[{"char_start":0,"char_count":6,"bounds":{"left":0.11968085,"top":0.0,"width":0.012965426,"height":0.014365523}},{"char_start":7,"char_count":25,"bounds":{"left":0.11968085,"top":0.0,"width":0.06216755,"height":0.014365523}},{"char_start":33,"char_count":30,"bounds":{"left":0.11968085,"top":0.0,"width":0.07513298,"height":0.014365523}},{"char_start":64,"char_count":15,"bounds":{"left":0.11968085,"top":0.019952115,"width":0.036236703,"height":0.014365523}},{"char_start":80,"char_count":50,"bounds":{"left":0.11968085,"top":0.055067837,"width":0.12699468,"height":0.014365523}},{"char_start":130,"char_count":2,"bounds":{"left":0.11968085,"top":0.0726257,"width":0.0026595744,"height":0.014365523}},{"char_start":132,"char_count":33,"bounds":{"left":0.11968085,"top":0.090183556,"width":0.08277926,"height":0.014365523}},{"char_start":165,"char_count":30,"bounds":{"left":0.11968085,"top":0.10774142,"width":0.07513298,"height":0.014365523}},{"char_start":195,"char_count":46,"bounds":{"left":0.11968085,"top":0.12529927,"width":0.11635638,"height":0.014365523}},{"char_start":241,"char_count":37,"bounds":{"left":0.11968085,"top":0.14285715,"width":0.0930851,"height":0.014365523}},{"char_start":278,"char_count":8,"bounds":{"left":0.11968085,"top":0.16041501,"width":0.017952127,"height":0.014365523}},{"char_start":286,"char_count":53,"bounds":{"left":0.11968085,"top":0.17797287,"width":0.14993352,"height":0.014365523}},{"char_start":339,"char_count":6,"bounds":{"left":0.11968085,"top":0.19553073,"width":0.012965426,"height":0.014365523}},{"char_start":346,"char_count":41,"bounds":{"left":0.11968085,"top":0.2482043,"width":0.10372341,"height":0.014365523}},{"char_start":387,"char_count":6,"bounds":{"left":0.11968085,"top":0.26576218,"width":0.012965426,"height":0.014365523}},{"char_start":393,"char_count":42,"bounds":{"left":0.11968085,"top":0.28332004,"width":0.12732713,"height":0.014365523}},{"char_start":435,"char_count":6,"bounds":{"left":0.11968085,"top":0.3008779,"width":0.012965426,"height":0.014365523}},{"char_start":441,"char_count":1,"bounds":{"left":0.11968085,"top":0.31843576,"width":0.0026595744,"height":0.014365523}}],"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Exceptions;\n\nuse Throwable;\n\nclass RateLimitException extends RuntimeException\n{\n public function __construct(\n string $message = '',\n private readonly int $retryAfter = 1,\n ?Throwable $previous = null,\n ) {\n parent::__construct($message, 0, $previous);\n }\n\n public function getRetryAfter(): int\n {\n return max($this->retryAfter, 1);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.42985374,"top":0.105347164,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.4424867,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"429","depth":4,"bounds":{"left":0.45345744,"top":0.10454908,"width":0.043882977,"height":0.015961692},"on_screen":true,"value":"429","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.5063165,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.5162899,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.5249335,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.53357714,"top":0.10454908,"width":0.00731383,"height":0.017557861},"on_screen":true,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"on_screen":false,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23/38","depth":4,"bounds":{"left":0.5472075,"top":0.103751,"width":0.025598405,"height":0.017557861},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.5728058,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.58144945,"top":0.10295291,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-9139763017207323775
|
-3587873515587402944
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
<?php
declare(strict_types=1);
namespace Jiminny\Exceptions;
use Throwable;
class RateLimitException extends RuntimeException
{
public function __construct(
string $message = '',
private readonly int $retryAfter = 1,
?Throwable $previous = null,
) {
parent::__construct($message, 0, $previous);
}
public function getRetryAfter(): int
{
return max($this->retryAfter, 1);
}
}
Show Replace Field
Search History
429
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
23/38
Previous Occurrence
Next Occurrence...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
16373
|
734
|
9
|
2026-05-11T08:47:41.222624+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-11/1778 /Users/lukas/.screenpipe/data/data/2026-05-11/1778489261222_m1.jpg...
|
Slack
|
! releases (Channel) - Jiminny Inc - 3 new items - ! releases (Channel) - Jiminny Inc - 3 new items - Slack...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Stefka Stoyanova
Vasil Vasilev
Nikolay Ivanov
Galya Dimitrova
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Ves
Aneliya Angelova
James Graham
Lukas Kovalik
you
Toast
Jira Cloud
Google Calendar
Messages
Messages
Files
Files
Bookmarks
Bookmarks
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
CircleCI
APP
May 8th at 5:41:27 PM
5:41 PM
Deployment Successful! tada emoji
Deployment Successful!
Project
: app
When
: 05/08/2026 14:41:27
Tag
:
View Job
View Job
Jump to date
GitHub
APP
Today at 10:09:37 AM
10:09 AM
6 new commits
6 new commits
pushed to
master
master
by
ilian-jiminny
ilian-jiminny
e85c8ef5
e85c8ef5
- Reformat .windsurfrules to MD format, copied the rules to CLAUDE.md as well
4c4c974e
4c4c974e
- make-claude-great-again CLAUDE.md is now a symlink to .windsurfrules
2ca3e070
2ca3e070
- Update .windsurfrules
185442c2
185442c2...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"bounds":{"left":0.51180553,"top":0.08111111,"width":0.025,"height":0.04},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"bounds":{"left":0.50625,"top":0.14,"width":0.036111113,"height":0.075555556},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"bounds":{"left":0.5138889,"top":0.19222222,"width":0.020833334,"height":0.015555556},"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"bounds":{"left":0.50625,"top":0.21555555,"width":0.036111113,"height":0.075555556},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"bounds":{"left":0.5159722,"top":0.26777777,"width":0.016666668,"height":0.015555556},"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"bounds":{"left":0.50625,"top":0.2911111,"width":0.036111113,"height":0.075555556},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"bounds":{"left":0.51111114,"top":0.34333333,"width":0.027083334,"height":0.015555556},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.51111114,"top":0.34333333,"width":0.0055555557,"height":0.015555556}},{"char_start":1,"char_count":7,"bounds":{"left":0.5159722,"top":0.34333333,"width":0.022222223,"height":0.015555556}}],"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"bounds":{"left":0.50625,"top":0.36666667,"width":0.036111113,"height":0.075555556},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"bounds":{"left":0.51666665,"top":0.4188889,"width":0.015972223,"height":0.015555556},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.51666665,"top":0.4188889,"width":0.004166667,"height":0.015555556}},{"char_start":1,"char_count":4,"bounds":{"left":0.5208333,"top":0.4188889,"width":0.011805556,"height":0.015555556}}],"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"bounds":{"left":0.50625,"top":0.4422222,"width":0.036111113,"height":0.075555556},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"bounds":{"left":0.5152778,"top":0.49444443,"width":0.018055556,"height":0.015555556},"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"bounds":{"left":0.50625,"top":0.5177778,"width":0.036111113,"height":0.075555556},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"bounds":{"left":0.5152778,"top":0.57,"width":0.01875,"height":0.015555556},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Unreads","depth":21,"bounds":{"left":0.57708335,"top":0.12777779,"width":0.039583333,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":21,"bounds":{"left":0.57708335,"top":0.12777779,"width":0.036805555,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":21,"bounds":{"left":0.57708335,"top":0.12777779,"width":0.038194444,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":21,"bounds":{"left":0.57708335,"top":0.12777779,"width":0.06111111,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":21,"bounds":{"left":0.68472224,"top":0.12777779,"width":0.0055555557,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":21,"bounds":{"left":0.57708335,"top":0.12777779,"width":0.050694443,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.09166667,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.093055554,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.046527777,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.025694445,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.038194444,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"bugs","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.022222223,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.072222225,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.057638887,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":23,"bounds":{"left":0.58819443,"top":0.12777779,"width":0.054166667,"height":0.007777778},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"general","depth":23,"bounds":{"left":0.58819443,"top":0.14666666,"width":0.034027778,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":23,"bounds":{"left":0.58819443,"top":0.17777778,"width":0.048611112,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":23,"bounds":{"left":0.58819443,"top":0.20888889,"width":0.072916664,"height":0.02},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.58819443,"top":0.20888889,"width":0.00625,"height":0.02}},{"char_start":1,"char_count":15,"bounds":{"left":0.59444445,"top":0.20888889,"width":0.06666667,"height":0.02}}],"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":23,"bounds":{"left":0.58819443,"top":0.24,"width":0.08055556,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"random","depth":23,"bounds":{"left":0.58819443,"top":0.2711111,"width":0.035416666,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":23,"bounds":{"left":0.58819443,"top":0.30222222,"width":0.036805555,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"sofia-office","depth":23,"bounds":{"left":0.58819443,"top":0.33333334,"width":0.05138889,"height":0.02},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.58819443,"top":0.33333334,"width":0.0048611113,"height":0.02}},{"char_start":1,"char_count":11,"bounds":{"left":0.59305555,"top":0.33333334,"width":0.045833334,"height":0.02}}],"role_description":"text"},{"role":"AXStaticText","text":"support","depth":23,"bounds":{"left":0.58819443,"top":0.36444443,"width":0.036111113,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":23,"bounds":{"left":0.58819443,"top":0.39555556,"width":0.05138889,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":23,"bounds":{"left":0.58819443,"top":0.42666668,"width":0.094444446,"height":0.02},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.58819443,"top":0.42666668,"width":0.004166667,"height":0.02}},{"char_start":1,"char_count":20,"bounds":{"left":0.5923611,"top":0.42666668,"width":0.09861111,"height":0.02}}],"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":23,"bounds":{"left":0.58819443,"top":0.5,"width":0.079166666,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":23,"bounds":{"left":0.58819443,"top":0.5311111,"width":0.055555556,"height":0.02},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.58819443,"top":0.5311111,"width":0.00625,"height":0.02}},{"char_start":1,"char_count":12,"bounds":{"left":0.59444445,"top":0.5311111,"width":0.048611112,"height":0.02}}],"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":23,"bounds":{"left":0.58819443,"top":0.56222224,"width":0.06736111,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":23,"bounds":{"left":0.58819443,"top":0.5933333,"width":0.07361111,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"bounds":{"left":0.58819443,"top":0.6244444,"width":0.07847222,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"bounds":{"left":0.6666667,"top":0.6244444,"width":0.013194445,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"bounds":{"left":0.6715278,"top":0.6244444,"width":0.029861111,"height":0.02},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.6715278,"top":0.6244444,"width":0.008333334,"height":0.02}},{"char_start":1,"char_count":13,"bounds":{"left":0.6798611,"top":0.6244444,"width":0.060416665,"height":0.02}}],"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":23,"bounds":{"left":0.58819443,"top":0.65555555,"width":0.060416665,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Ves","depth":23,"bounds":{"left":0.58819443,"top":0.68666667,"width":0.016666668,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"bounds":{"left":0.58819443,"top":0.7177778,"width":0.07847222,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"James Graham","depth":23,"bounds":{"left":0.58819443,"top":0.7488889,"width":0.06666667,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Lukas Kovalik","depth":23,"bounds":{"left":0.58819443,"top":0.78,"width":0.061805554,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"you","depth":23,"bounds":{"left":0.65555555,"top":0.78,"width":0.013194445,"height":0.02},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.65555555,"top":0.78,"width":0.0048611113,"height":0.02}},{"char_start":1,"char_count":2,"bounds":{"left":0.66041666,"top":0.78,"width":0.011805556,"height":0.02}}],"role_description":"text"},{"role":"AXStaticText","text":"Toast","depth":23,"bounds":{"left":0.58819443,"top":0.85333335,"width":0.025694445,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":23,"bounds":{"left":0.58819443,"top":0.8844444,"width":0.045833334,"height":0.02},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Google Calendar","depth":23,"bounds":{"left":0.58819443,"top":0.91555554,"width":0.06388889,"height":0.02},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.58819443,"top":0.91555554,"width":0.007638889,"height":0.02}},{"char_start":1,"char_count":14,"bounds":{"left":0.59583336,"top":0.91555554,"width":0.06875,"height":0.02}}],"role_description":"text"},{"role":"AXRadioButton","text":"Messages","depth":17,"bounds":{"left":0.71319443,"top":0.12777779,"width":0.06458333,"height":0.04222222},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Messages","depth":19,"bounds":{"left":0.7326389,"top":0.14,"width":0.039583333,"height":0.017777778},"on_screen":true,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":17,"bounds":{"left":0.7798611,"top":0.12777779,"width":0.04375,"height":0.04222222},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":19,"bounds":{"left":0.79930556,"top":0.14,"width":0.01875,"height":0.017777778},"on_screen":true,"lines":[{"char_start":0,"char_count":1,"bounds":{"left":0.79930556,"top":0.14,"width":0.0055555557,"height":0.017777778}},{"char_start":1,"char_count":4,"bounds":{"left":0.8048611,"top":0.14,"width":0.013194445,"height":0.017777778}}],"role_description":"text"},{"role":"AXRadioButton","text":"Bookmarks","depth":17,"bounds":{"left":0.8263889,"top":0.12777779,"width":0.07083333,"height":0.04222222},"on_screen":true,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Bookmarks","depth":19,"bounds":{"left":0.84583336,"top":0.14,"width":0.045833334,"height":0.017777778},"on_screen":true,"role_description":"text"},{"role":"AXPopUpButton","text":"Add and Edit Channel Tabs","depth":17,"bounds":{"left":0.8993056,"top":0.12777779,"width":0.022916667,"height":0.04222222},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Canvas","depth":17,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"List","depth":17,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":17,"on_screen":false,"role_description":"text"},{"role":"AXPopUpButton","text":"Jump to date","depth":22,"bounds":{"left":0.8041667,"top":0.16111112,"width":0.09097222,"height":0.0011111111},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"CircleCI","depth":23,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.0375,"height":0.0011111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"bounds":{"left":0.7881944,"top":0.16111112,"width":0.013888889,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.8041667,"top":0.16111112,"width":0.0055555557,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"May 8th at 5:41:27 PM","depth":23,"bounds":{"left":0.8090278,"top":0.16111112,"width":0.031944446,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5:41 PM","depth":24,"bounds":{"left":0.8090278,"top":0.16111112,"width":0.031944446,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXHeading","text":"Deployment Successful! tada emoji","depth":23,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.2361111,"height":0.0011111111},"on_screen":true,"role_description":"heading"},{"role":"AXStaticText","text":"Deployment Successful!","depth":25,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.115277775,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Project","depth":24,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.033333335,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":": app","depth":24,"bounds":{"left":0.7798611,"top":0.16111112,"width":0.022222223,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"When","depth":24,"bounds":{"left":0.8298611,"top":0.16111112,"width":0.028472222,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":": 05/08/2026 14:41:27","depth":24,"bounds":{"left":0.8298611,"top":0.16111112,"width":0.058333334,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"Tag","depth":24,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.015972223,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":":","depth":24,"bounds":{"left":0.7625,"top":0.16111112,"width":0.0027777778,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"View Job","depth":24,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.049305554,"height":0.0011111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View Job","depth":26,"bounds":{"left":0.75277776,"top":0.16111112,"width":0.036805555,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXPopUpButton","text":"Jump to date","depth":22,"bounds":{"left":0.8229167,"top":0.17666666,"width":0.05277778,"height":0.031111112},"on_screen":true,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"GitHub","depth":23,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.034722224,"height":0.0011111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"bounds":{"left":0.78541666,"top":0.16111112,"width":0.013888889,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.80138886,"top":0.16111112,"width":0.0055555557,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"Today at 10:09:37 AM","depth":23,"bounds":{"left":0.80625,"top":0.16111112,"width":0.0375,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10:09 AM","depth":24,"bounds":{"left":0.80625,"top":0.16111112,"width":0.0375,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"6 new commits","depth":23,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.06944445,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6 new commits","depth":24,"bounds":{"left":0.7465278,"top":0.16111112,"width":0.06944445,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"pushed to","depth":23,"bounds":{"left":0.8159722,"top":0.16111112,"width":0.05138889,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"master","depth":24,"bounds":{"left":0.86944443,"top":0.16111112,"width":0.030555556,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"master","depth":25,"bounds":{"left":0.86944443,"top":0.16111112,"width":0.030555556,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"by","depth":23,"bounds":{"left":0.90208334,"top":0.16111112,"width":0.016666668,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"ilian-jiminny","depth":23,"bounds":{"left":0.91875,"top":0.16111112,"width":0.055555556,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ilian-jiminny","depth":24,"bounds":{"left":0.91875,"top":0.16111112,"width":0.055555556,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"e85c8ef5","depth":26,"bounds":{"left":0.7604167,"top":0.16111112,"width":0.04027778,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"e85c8ef5","depth":27,"bounds":{"left":0.7604167,"top":0.16111112,"width":0.04027778,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"- Reformat .windsurfrules to MD format, copied the rules to CLAUDE.md as well","depth":25,"bounds":{"left":0.7576389,"top":0.16111112,"width":0.21458334,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"4c4c974e","depth":26,"bounds":{"left":0.7604167,"top":0.16111112,"width":0.04027778,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"4c4c974e","depth":27,"bounds":{"left":0.7604167,"top":0.16111112,"width":0.04027778,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"- make-claude-great-again CLAUDE.md is now a symlink to .windsurfrules","depth":25,"bounds":{"left":0.7576389,"top":0.16111112,"width":0.21388888,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"2ca3e070","depth":26,"bounds":{"left":0.7604167,"top":0.16111112,"width":0.04027778,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2ca3e070","depth":27,"bounds":{"left":0.7604167,"top":0.16111112,"width":0.04027778,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"- Update .windsurfrules","depth":25,"bounds":{"left":0.8034722,"top":0.16111112,"width":0.10972222,"height":0.0011111111},"on_screen":true,"role_description":"text"},{"role":"AXLink","text":"185442c2","depth":26,"bounds":{"left":0.7604167,"top":0.16111112,"width":0.04027778,"height":0.0011111111},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"185442c2","depth":27,"bounds":{"left":0.7604167,"top":0.16111112,"width":0.04027778,"height":0.0011111111},"on_screen":true,"role_description":"text"}]...
|
-9137520789281198178
|
-4283595332611427686
|
click
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
1
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
bugs
confusion-clinic
curiosity_lab
engineering
general
jiminny-bg
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Stefka Stoyanova
Vasil Vasilev
Nikolay Ivanov
Galya Dimitrova
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Stoyan Tanev
Ves
Aneliya Angelova
James Graham
Lukas Kovalik
you
Toast
Jira Cloud
Google Calendar
Messages
Messages
Files
Files
Bookmarks
Bookmarks
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
CircleCI
APP
May 8th at 5:41:27 PM
5:41 PM
Deployment Successful! tada emoji
Deployment Successful!
Project
: app
When
: 05/08/2026 14:41:27
Tag
:
View Job
View Job
Jump to date
GitHub
APP
Today at 10:09:37 AM
10:09 AM
6 new commits
6 new commits
pushed to
master
master
by
ilian-jiminny
ilian-jiminny
e85c8ef5
e85c8ef5
- Reformat .windsurfrules to MD format, copied the rules to CLAUDE.md as well
4c4c974e
4c4c974e
- make-claude-great-again CLAUDE.md is now a symlink to .windsurfrules
2ca3e070
2ca3e070
- Update .windsurfrules
185442c2
185442c2
SlackFileEditViewGoHistoryWindowHelpDOCKERO 81DEV (docker)882DEV (d)APP (-zsh)• xзmasterJY-20818-move-AJ-reports-to-separated-datadog-metricJY-20773-fix-automated-reports-user-pilot-trackingJY-20157-AJ-report-not-send-notificationJY-20508-notify-before-AJ-report-expirationJY-20372-ai-reports-promotion-pagesJY-20352-sync-opportunities-without-a-local-owner-user-id-is-nullJY-20738-debug-AJ-tracking-UPJY-18909-automated-reports-ask-jiminnyJY-20692-fix-integration-app-[API_KEY] laysJY-20698-fix-SF-activity-types-on-new-playbookJY-20543-AJ-report-trackingJY-20384-handle-auto-sync-with-no-access-to-event-typeJY-20458-ask-Jiminny-user-definitionsJY-19666-fix-import-contacts-account-associationJY-19666-HS-import-contacts-and-accounts-batch-jobJY-20458-Ask-Jiminny-ReportsJY-20200-batch-update-CRM-objects-SalesforceJY-19666-HS-webhooks-add-contact-and-companyJY-20348-trigger-setup-DI-layout-on-team-creationJY-20326-refactor-info-message-in-commandJY-20317-fix-auto-log-delay-issue-on-all-channels-disabledJY-20312-remove-on-update-change-last-synced-at-crm-configurationsJY-20306-SF-skip-auto-sync-for-task-based-playbookJY-20192-remove-deleted-team-from-saved-search-filtersJY-20197-import-opportunity-batch-jobJY-20293-enable-status-field-for-pipedrive-dealsJY-20191-remove-commands-interactive-promptsJY-20118-change-default-sync-strategyJY-20183-add-cache-on-auto-log-delayJY-20197-add-import-opportunity-batch-job20118-hs-opportunity-make-webhook-strategy-defaultJY-20118-make-default-hs-opportunity-sync-strategy-webhook-basedJY-20196-handle-opportunity-without-noteJY-20118-improve-opportunity-importJY-20189-handle-activity-search-on-deleted-groupsJY-20145-filter-out-converted-leads-when-matchingJY-20150-skip-push-summary-on-summary-ready-1f-autologJY-20132-fix-note-encodingJY-19792-clean-logslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-Lirroot@docker_lamp_1:/home/jiminny# ]•HomeDMsActivityFilesLater..•More(wb)§ Support Daily • in 3 h 13 m100% <78• Mon 11 May 11:47:41ED→Describe what you are looking forJiminny ...Chsmechuus# general# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of_jimi...# releases8 226 0• Messages+• Direct messagesa. Stefka Stoyano...€. Vasil VasilevNikolay Ivanov. Galya DimitrovaAneliya Angelova, .... Stoyan Tanev@ Ves®. Aneliya Angelova& James GrahamLukas Kovalik y…..::: AppsC FilesBookmarksclaude-great-arToday~Show more(jiminny/app Added by GitHubCircleCl APP 10:35 AMDeployment Successful!Project: appWhen:05/11/202607:35:21Tag:View JobNewToastJira CloudGoogle Cale...CircleCl APP11:00 AMNew commits deployed to Prophet Prod-US:[e568c4f](https://github.com/jiminny/prophet/commit/e568c4f3b57c9392883f81974b6db3dd09a23a1e) - [JY-20832](https://jiminny.atlassian.net/browse/JY-20832): Remove usage of grok 4.0 and 4.1 models(#506) (steliyan-g)New commits deployed to Prophet Prod-EU:[e568c4f](https://github.com/jiminny/prophet/commit/e568c4f3b57c9392883f81974b6db3dd09a23ale)- [JY-20832](https://jiminny.atlassian.net/browse/JY-20832): Remove usage of grok 4.0 and 4.1 models(#506) (steliyan-g)Message #releases1+Aa..•...
|
16371
|
NULL
|
NULL
|
NULL
|
|
4019
|
144
|
12
|
2026-05-07T12:57:32.378167+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778158652378_m2.jpg...
|
iTerm2
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PostmanVIewWindowmelpProjectRematchActivityOnCrmOb PostmanVIewWindowmelpProjectRematchActivityOnCrmObjectDetach.php* DeleteCr©PaginationConfig.phpJiminnyDeougcommana.ongE test.py<> Untitled Diagram.xmlus vetur.config.isM+ WEBHOOK_FILTERING_IMPLEM> Ib External Librariesv E* Scratches and Consolesv D Database Consolesvdtu& console cuiA DEAL RISKS [EU]&DI EU42012Uv 4 liminnv@localhost& console liminny@localhoA DI jiminny@localhost]4 HS local liminnv@localhc4 SF [jiminny@localhost]4 zoho dev liiminnvallocalnv A DROnu Hubspot//syncermenuuestrait.onoservices+,o,cv D DatabaseV AEUconsolev & liminny@localhost4HS_Jocal 1 s 896 msA SFtị accounts 676 ms~ A PROD&, console 1s 381 msV & STAGINGA console 1s 250 ms…Dockenclass HubspotPaq1nat1onServiceououc runction cetpacanatedbataden|//sch1s-> logragznac1onrrog} while ($state-›offset && ! em// Log final pagination completSth1s->loqger->info(' Hubspoti'team_id' => $teamid,'endpoint' => Sendpoint."total records fetched' =>'total_elapsed_seconds' =>'average_seconds_per_requesh Outoutfi Result 12Did Yy.onmicrosoft.cominny.onmicrosoft.com3 ny.onmicrosoft.com40€149%1372"Lukas sterka 121 • In 1h 33m100% L2Thu 7 May 15:57:32UpgradeYour team is now on the Free plan with 1 admin. You retain editing access and other members are read-only. View team permissions to see who can edit, or upgrade to restore collaborationIteration run Search HSPOST Read:Overview Authorization Scriots• SearchGET Get Enc • GET Read CopGET httos:/©Iteration rulm Iteration rulNo environmentPublish docs RunShare8|0o|0v COLLECtIONS> CRM Owners› CRM Pipelines› Dealsengagements› OLD ENGAGEMENTSuer list meetingsGET read callPost coarch calleGET ist callspost meetings scheduledGET det meetingPost get link to task>POST Create Contact with Association> Hubspotvteration run HSGET Read Copyeg. An error occurred.successful operationv lteration run Search HSpost search contact by email Copy> Journal & webhoooks v4> OAuth› Properties> RESEARCHSEARCHIPoSt search contact by phonePOST search contact by emailPOST search meetings> PoST Search calls v3POST Search related meetinas v3Post search dealsv UicofullGET engagements old associated by dealGET engagements old associated by comoanySustem Resource WarningSustem resources are constrained. Thesystem may not be able to generate the loadeded for this test and the cest is likely toe Connect Git = Concole 5.] TerminaIteration run Search HSỞ You Z 1 all1 g 03:15 PM, May 07, 2026Help people understand your collection by adding a description. 4* Write with AllVAIlAll variablesE EnvironmentNo environment selected. Select envionmeatc Iteration run Search HSNo variables defined in this collection. AdeG GlobalstokenCM7D-pTaMxIZQINQMI8kQE.baseUrlhttps:/api.hubapi.comdev-tokencLLmoNnomxir@inemioko.• Local VaultStore vour APl secrets locally in vault. Set up vaultGlobals Vault Tools S000...
|
NULL
|
-9137211331330144861
|
NULL
|
click
|
ocr
|
NULL
|
PostmanVIewWindowmelpProjectRematchActivityOnCrmOb PostmanVIewWindowmelpProjectRematchActivityOnCrmObjectDetach.php* DeleteCr©PaginationConfig.phpJiminnyDeougcommana.ongE test.py<> Untitled Diagram.xmlus vetur.config.isM+ WEBHOOK_FILTERING_IMPLEM> Ib External Librariesv E* Scratches and Consolesv D Database Consolesvdtu& console cuiA DEAL RISKS [EU]&DI EU42012Uv 4 liminnv@localhost& console liminny@localhoA DI jiminny@localhost]4 HS local liminnv@localhc4 SF [jiminny@localhost]4 zoho dev liiminnvallocalnv A DROnu Hubspot//syncermenuuestrait.onoservices+,o,cv D DatabaseV AEUconsolev & liminny@localhost4HS_Jocal 1 s 896 msA SFtị accounts 676 ms~ A PROD&, console 1s 381 msV & STAGINGA console 1s 250 ms…Dockenclass HubspotPaq1nat1onServiceououc runction cetpacanatedbataden|//sch1s-> logragznac1onrrog} while ($state-›offset && ! em// Log final pagination completSth1s->loqger->info(' Hubspoti'team_id' => $teamid,'endpoint' => Sendpoint."total records fetched' =>'total_elapsed_seconds' =>'average_seconds_per_requesh Outoutfi Result 12Did Yy.onmicrosoft.cominny.onmicrosoft.com3 ny.onmicrosoft.com40€149%1372"Lukas sterka 121 • In 1h 33m100% L2Thu 7 May 15:57:32UpgradeYour team is now on the Free plan with 1 admin. You retain editing access and other members are read-only. View team permissions to see who can edit, or upgrade to restore collaborationIteration run Search HSPOST Read:Overview Authorization Scriots• SearchGET Get Enc • GET Read CopGET httos:/©Iteration rulm Iteration rulNo environmentPublish docs RunShare8|0o|0v COLLECtIONS> CRM Owners› CRM Pipelines› Dealsengagements› OLD ENGAGEMENTSuer list meetingsGET read callPost coarch calleGET ist callspost meetings scheduledGET det meetingPost get link to task>POST Create Contact with Association> Hubspotvteration run HSGET Read Copyeg. An error occurred.successful operationv lteration run Search HSpost search contact by email Copy> Journal & webhoooks v4> OAuth› Properties> RESEARCHSEARCHIPoSt search contact by phonePOST search contact by emailPOST search meetings> PoST Search calls v3POST Search related meetinas v3Post search dealsv UicofullGET engagements old associated by dealGET engagements old associated by comoanySustem Resource WarningSustem resources are constrained. Thesystem may not be able to generate the loadeded for this test and the cest is likely toe Connect Git = Concole 5.] TerminaIteration run Search HSỞ You Z 1 all1 g 03:15 PM, May 07, 2026Help people understand your collection by adding a description. 4* Write with AllVAIlAll variablesE EnvironmentNo environment selected. Select envionmeatc Iteration run Search HSNo variables defined in this collection. AdeG GlobalstokenCM7D-pTaMxIZQINQMI8kQE.baseUrlhttps:/api.hubapi.comdev-tokencLLmoNnomxir@inemioko.• Local VaultStore vour APl secrets locally in vault. Set up vaultGlobals Vault Tools S000...
|
4016
|
NULL
|
NULL
|
NULL
|
|
23917
|
1002
|
60
|
2026-05-12T08:30:47.288457+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778574647288_m1.jpg...
|
Firefox
|
Jiminny — Work
|
True
|
app.jiminny.com/ai-reports
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
Data Explorer
Data Explorer
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
Jiminny
Jiminny
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
6
6
AI Reports
AI Reports
Ask Jiminny reports
Ask Jiminny reports
Report name
5-19 Apr, 2026
2026
Mo
Tu
We
Th
Fr
Sa
Su
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"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,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pull requests · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20773] User Pilot not receiving events on report generated - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20773] User Pilot not receiving events on report generated - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20776] Automated report - sentry - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Data Explorer","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Data Explorer","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20776] Automated report - sentry - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Jiminny","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"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.20243056,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.22534722,"top":0.0,"width":0.022222223,"height":0.035555556},"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.24861111,"top":0.0,"width":0.022222223,"height":0.035555556},"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.271875,"top":0.0,"width":0.022222223,"height":0.035555556},"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.2951389,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"6","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"6","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"AI Reports","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AI Reports","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Ask Jiminny reports","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny reports","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Report name","depth":17,"on_screen":true,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5-19 Apr, 2026","depth":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":25,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Mo","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Tu","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"We","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Th","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fr","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sa","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Su","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"30","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"31","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"4","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"8","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-9135308071776217130
|
-2592575627429152632
|
click
|
accessibility
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
Data Explorer
Data Explorer
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
Jiminny
Jiminny
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
6
6
AI Reports
AI Reports
Ask Jiminny reports
Ask Jiminny reports
Report name
5-19 Apr, 2026
2026
Mo
Tu
We
Th
Fr
Sa
Su
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14...
|
NULL
|
NULL
|
NULL
|
NULL
|